PaymentRequest constructor
PaymentRequest({})
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,
});