toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  map['id'] = id;
  map['amount'] = amount;
  map['description'] = description;
  map['currency'] = currency;
  return map;
}