Address constructor

const Address({
  1. required int? zipCode,
  2. String? country,
  3. String? state,
  4. String? stateName,
  5. String? city,
  6. String? neighborhood,
  7. String? address,
  8. String? number,
  9. String? complement,
  10. bool? isOptIn,
  11. double? latitude,
  12. double? longitude,
})

Implementation

const Address({
  required this.zipCode,
  this.country,
  this.state,
  this.stateName,
  this.city,
  this.neighborhood,
  this.address,
  this.number,
  this.complement,
  this.isOptIn,
  this.latitude,
  this.longitude,
});