copyWith method
Implementation
ReportOption copyWith({String? id, String? text}) =>
ReportOption(id: id ?? this.id, text: text ?? this.text);
ReportOption copyWith({String? id, String? text}) =>
ReportOption(id: id ?? this.id, text: text ?? this.text);