Address constructor

Address({
  1. required String city,
  2. required String number,
  3. required String state,
  4. required String street,
  5. required String zipCode,
  6. String? complement,
  7. String? name,
  8. String? neighborhood,
  9. String? phoneNumber,
})

Implementation

Address({
  required this.city,
  required this.number,
  required this.state,
  required this.street,
  required this.zipCode,
  this.complement,
  this.name,
  this.neighborhood,
  this.phoneNumber,
});