toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final firstValue = this.firstValue;
  final predefinedItem = this.predefinedItem;
  final secondValue = this.secondValue;
  return {
    'firstValue': ?firstValue,
    'predefinedItem': ?predefinedItem,
    'secondValue': ?secondValue,
  };
}