BalanceTransaction constructor
BalanceTransaction({
- required String id,
- required int amount,
- required String currency,
- required String description,
- required int fee,
- required List<
FeeDetails> fee_details, - required int net,
- required String source,
- required String status,
- required String type,
- required num available_on,
- required num created,
- required num exchange_rate,
- required String object,
- 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,
});