ABATransaction constructor
ABATransaction({
- ABAMerchant? merchant,
- required String tranID,
- required String reqTime,
- double? amount,
- List<
ABATransactionItem> ? items, - String? firstname,
- String? lastname,
- String? phone,
- String? email,
- String? returnUrl,
- String? continueSuccessUrl,
- String? returnParams,
- double? shipping = 0.00,
- ABAPaymentOption option = ABAPaymentOption.cards,
- ABATransactionType type = ABATransactionType.purchase,
- ABATransactionCurrency currency = ABATransactionCurrency.USD,
Implementation
ABATransaction({
this.merchant,
required this.tranID,
required this.reqTime,
this.amount,
this.items,
this.firstname,
this.lastname,
this.phone,
this.email,
this.returnUrl,
this.continueSuccessUrl,
this.returnParams,
this.shipping = 0.00,
this.option = ABAPaymentOption.cards,
this.type = ABATransactionType.purchase,
this.currency = ABATransactionCurrency.USD,
});