TransactionInfo constructor

TransactionInfo({
  1. String? amount,
  2. String? currencyCode,
  3. String? invoiceNo,
  4. String? productDescription,
  5. RecurringInfo? recurring,
  6. List<PaymentItemInfo>? paymentItemInfo,
})

Implementation

TransactionInfo({
  this.amount,
  this.currencyCode,
  this.invoiceNo,
  this.productDescription,
  this.recurring,
  this.paymentItemInfo,
});