PaymentArguments constructor
PaymentArguments({})
Creates a new PaymentArguments instance.
Parameters
amount: Required payment amount as stringterminalId: Required terminal identifiermerchantId: Required merchant identifiertransactionId: Optional transaction identifiercurrencyData: Optional currency formatting datamerchantReference: Optional merchant reference
Implementation
PaymentArguments({
required this.amount,
required this.terminalId,
required this.merchantId,
this.transactionId,
this.currencyData,
this.merchantReference,
});