copyWith method

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

Implementation

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