ApplePayData constructor

ApplePayData({
  1. String? countryCode,
  2. String? merchantId,
  3. String? currencyCode,
  4. double? amount,
  5. List<String>? supportedNetworks,
})

Implementation

ApplePayData({
  this.countryCode,
  this.merchantId,
  this.currencyCode,
  this.amount,
  this.supportedNetworks,
});