toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currencyCode = this.currencyCode;
  final numDecimalPlaces = this.numDecimalPlaces;
  final numberFormatType = this.numberFormatType;
  final suffix = this.suffix;
  return {
    'currencyCode': ?currencyCode,
    'numDecimalPlaces': ?numDecimalPlaces,
    'numberFormatType': ?numberFormatType,
    'suffix': ?suffix,
  };
}