Address constructor

const Address({
  1. String houseNumber = '',
  2. String road = '',
  3. String neighbourhood = '',
  4. String suburb = '',
  5. required String city,
  6. String district = '',
  7. String state = '',
  8. required int postalCode,
  9. String country = '',
  10. String countryCode = '',
  11. Locale locale = Locale.EN,
})

Implementation

const Address({
  this.houseNumber = '',
  this.road = '',
  this.neighbourhood = '',
  this.suburb = '',
  required this.city,
  this.district = '',
  this.state = '',
  required this.postalCode,
  this.country = '',
  this.countryCode = '',
  this.locale = Locale.EN,
});