toJson method

Map<String, dynamic> toJson()

Implementation

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