SetAmountParams constructor

SetAmountParams({
  1. required String amount,
  2. String cashbackAmount = "",
  3. String currencyCode = currency,
  4. String transactionType = transType,
})

Implementation

SetAmountParams({
  required this.amount,
  this.cashbackAmount = "",
  this.currencyCode = currency, // Fixed value
  this.transactionType = transType, // Fixed value
});