TransactionInfo constructor

TransactionInfo({
  1. String? transactionId,
  2. TotalPriceStatus? totalPriceStatus,
  3. String? totalPriceLabel,
  4. CheckoutOption? checkoutOption,
})

This object describes a transaction that determines a payer's ability to pay. It's used to present a payment authorization dialog. The following table details the properties of the object.

Implementation

TransactionInfo({
  this.transactionId,
  this.totalPriceStatus,
  this.totalPriceLabel,
  this.checkoutOption,
});