AddressPostalCodeFieldValue constructor

AddressPostalCodeFieldValue({
  1. String? postalCode,
  2. String? uf,
  3. String? city,
  4. String? neighborhood,
  5. String? street,
  6. String? number,
  7. String? complement,
  8. bool validPostalCode = false,
})

Implementation

AddressPostalCodeFieldValue({
  this.postalCode,
  this.uf,
  this.city,
  this.neighborhood,
  this.street,
  this.number,
  this.complement,
  this.validPostalCode = false,
});