CustomerFundCashBalanceOptions constructor

const CustomerFundCashBalanceOptions({
  1. required int amount,
  2. required String currency,
  3. List<String>? expand,
  4. String? reference,
})

Implementation

const CustomerFundCashBalanceOptions({
  required this.amount,
  required this.currency,
  this.expand,
  this.reference,
});