toJson method

Map<String, dynamic> toJson()

Implementation

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