Transaction constructor

Transaction({
  1. CardTransaction? card,
  2. required String? activeAmount,
  3. num? fundForDepositBalanceAmount,
  4. required String? totalAmountToDeposit,
  5. required String? currency,
  6. String? amountDeposited,
})

Implementation

Transaction({
  this.card,
  // this.bank,
  required this.activeAmount,
  this.fundForDepositBalanceAmount,
  required this.totalAmountToDeposit,
  required this.currency,
  this.amountDeposited,
});