OfflineUserAddressInfo constructor

OfflineUserAddressInfo({
  1. String? city,
  2. String? countryCode,
  3. String? hashedFirstName,
  4. String? hashedLastName,
  5. String? hashedStreetAddress,
  6. String? postalCode,
  7. String? state,
})

Implementation

OfflineUserAddressInfo({
  this.city,
  this.countryCode,
  this.hashedFirstName,
  this.hashedLastName,
  this.hashedStreetAddress,
  this.postalCode,
  this.state,
});