AddressModel constructor

AddressModel({
  1. required String city,
  2. required String village,
  3. required String county,
  4. required String state,
  5. required String subDistrict,
  6. required String country,
  7. required String countryCode,
})

Implementation

AddressModel({
  required this.city,
  required this.village,
  required this.county,
  required this.state,
  required this.subDistrict,
  required this.country,
  required this.countryCode,
});