copyWith method

Mode copyWith({
  1. String? mode,
})

Implementation

Mode copyWith({String? mode}) {
  return Mode(mode: mode ?? this.mode);
}