PEGooglePayAddress constructor

const PEGooglePayAddress({
  1. String? address1,
  2. String? address2,
  3. String? address3,
  4. String? administrativeArea,
  5. String? countryCode,
  6. String? locality,
  7. String? name,
  8. String? phoneNumber,
  9. String? postalCode,
})

Creates an instance of PEGooglePayAddress.

  • address1: The first line of the address.
  • address2: The second line of the address.
  • address3: The third line of the address.
  • administrativeArea: The state, province, or region.
  • countryCode: The two-letter country code (e.g., "US").
  • locality: The city or town.
  • name: The recipient's name.
  • phoneNumber: The associated phone number.
  • postalCode: The postal code or ZIP code.

Implementation

const PEGooglePayAddress({
  this.address1,
  this.address2,
  this.address3,
  this.administrativeArea,
  this.countryCode,
  this.locality,
  this.name,
  this.phoneNumber,
  this.postalCode,
});