GooglePayData constructor

GooglePayData({
  1. String? countryCode,
  2. String? merchantId,
  3. String? merchantName,
  4. String? currencyCode,
  5. double? amount,
  6. String? gateway,
  7. String? gatewayMerchantId,
})

Implementation

GooglePayData({
  this.countryCode,
  this.merchantId,
  this.merchantName,
  this.currencyCode,
  this.amount,
  this.gateway,
  this.gatewayMerchantId,
});