GoogleParameters constructor

GoogleParameters({
  1. required String gatewayName,
  2. required String gatewayMerchantId,
  3. String? merchantId,
  4. String? merchantName,
  5. CardParameters? cardParameters,
  6. TransactionInfo? transactionInfo,
  7. bool? emailRequired,
  8. bool? shippingAddressRequired,
  9. ShippingAddressParameters? shippingAddressParameters,
})

Parameters for making a payment in Google Pay

Implementation

GoogleParameters({
  required this.gatewayName,
  required this.gatewayMerchantId,
  this.merchantId,
  this.merchantName,
  this.cardParameters,
  this.transactionInfo,
  this.emailRequired,
  this.shippingAddressRequired,
  this.shippingAddressParameters,
});