Address constructor
Address({
- required String? road,
- required String? borough,
- required String? city,
- required String? municipality,
- required String? district,
- required String? state,
- required String? iso31662Lvl4,
- required String? postcode,
- required String? country,
- required String? countryCode,
- required String? houseNumber,
- 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,
});