BalanceTransaction constructor

BalanceTransaction({
  1. required String id,
  2. required int amount,
  3. required String currency,
  4. required String description,
  5. required int fee,
  6. required List<FeeDetails> fee_details,
  7. required int net,
  8. required String source,
  9. required String status,
  10. required String type,
  11. required num available_on,
  12. required num created,
  13. required num exchange_rate,
  14. required String object,
  15. required String reporting_category,
})

Implementation

BalanceTransaction({
  required this.id,
  required this.amount,
  required this.currency,
  required this.description,
  required this.fee,
  // ignore: non_constant_identifier_names
  required this.fee_details,
  required this.net,
  required this.source,
  required this.status,
  required this.type,
  required this.available_on,
  required this.created,
  required this.exchange_rate,
  required this.object,
  required this.reporting_category,
});