toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'amount'] = this.amount;
  json[r'amount_formatted'] = this.amountFormatted;
  json[r'currency'] = this.currency;
  json[r'currency_symbol'] = this.currencySymbol;
  return json;
}