toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final label = this.label;
  final localizedLabel = this.localizedLabel;
  final localizedValue = this.localizedValue;
  final value = this.value;
  return {
    'label': ?label,
    'localizedLabel': ?localizedLabel,
    'localizedValue': ?localizedValue,
    'value': ?value,
  };
}