copyWith method

Configuration copyWith({
  1. bool? dummy,
})

Implementation

Configuration copyWith({bool? dummy}) {
  return Configuration(dummy: dummy ?? this.dummy);
}