Address constructor

Address({
  1. required String road,
  2. required String village,
  3. required String county,
  4. required String stateDistrict,
  5. required String state,
  6. required String iso31662Lvl4,
  7. required String postcode,
  8. required String country,
  9. required String countryCode,
})

Implementation

Address({
  required this.road,
  required this.village,
  required this.county,
  required this.stateDistrict,
  required this.state,
  required this.iso31662Lvl4,
  required this.postcode,
  required this.country,
  required this.countryCode,
});