PEGooglePayShippingAddressParameters constructor

PEGooglePayShippingAddressParameters({
  1. List<String>? allowedCountryCodes,
  2. bool phoneNumberRequired = false,
})

Creates an instance of PEGooglePayShippingAddressParameters.

  • allowedCountryCodes: Specifies the countries allowed for shipping.
  • phoneNumberRequired: Whether a phone number is required.

Implementation

PEGooglePayShippingAddressParameters({
  this.allowedCountryCodes,
  this.phoneNumberRequired = false,
});