Address constructor

Address({
  1. required String? road,
  2. required String? borough,
  3. required String? city,
  4. required String? municipality,
  5. required String? district,
  6. required String? state,
  7. required String? iso31662Lvl4,
  8. required String? postcode,
  9. required String? country,
  10. required String? countryCode,
  11. required String? houseNumber,
  12. required String? town,
})

Implementation

Address({
  required this.road,
  required this.borough,
  required this.city,
  required this.municipality,
  required this.district,
  required this.state,
  required this.iso31662Lvl4,
  required this.postcode,
  required this.country,
  required this.countryCode,
  required this.houseNumber,
  required this.town,
});