toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final format = this.format;
  final rawValue = this.rawValue;
  final valueFormat = this.valueFormat;
  return {
    'format': ?format,
    'rawValue': ?rawValue,
    'valueFormat': ?valueFormat,
  };
}