PaymentRequest constructor

PaymentRequest({
  1. required String orderId,
  2. required String storeId,
  3. required String transactionAmount,
  4. required String transactionType,
  5. required String mobileAccountNo,
  6. required String emailAddress,
})

Constructs an instance of PaymentRequest.

  • orderId: A unique identifier for the order.
  • storeId: The identifier of the store or merchant.
  • transactionAmount: The amount of the transaction.
  • transactionType: The type of transaction.
  • mobileAccountNo: The mobile account number associated with the payment.
  • emailAddress: The email address of the customer.

Implementation

PaymentRequest({
  required this.orderId,
  required this.storeId,
  required this.transactionAmount,
  required this.transactionType,
  required this.mobileAccountNo,
  required this.emailAddress,
});