toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final firstRowOption = this.firstRowOption;
  final secondRowOption = this.secondRowOption;
  final thirdRowOption = this.thirdRowOption;
  return {
    'firstRowOption': ?firstRowOption,
    'secondRowOption': ?secondRowOption,
    'thirdRowOption': ?thirdRowOption,
  };
}