Address constructor

Address({
  1. required String careOf,
  2. required String country,
  3. required String district,
  4. required String house,
  5. required String landmark,
  6. required String locality,
  7. required String pin,
  8. required String postOffice,
  9. required String state,
  10. required String street,
  11. required String subDistrict,
  12. required String vtc,
})

Implementation

Address({
  required this.careOf,
  required this.country,
  required this.district,
  required this.house,
  required this.landmark,
  required this.locality,
  required this.pin,
  required this.postOffice,
  required this.state,
  required this.street,
  required this.subDistrict,
  required this.vtc,
});