Address constructor

const Address({
  1. required Coordinates coordinates,
  2. required String addressLine,
  3. required String countryName,
  4. required String countryCode,
  5. required String featureName,
  6. String? postalCode,
  7. String? adminArea,
  8. String? subAdminArea,
  9. String? locality,
  10. String? subLocality,
  11. String? thoroughfare,
  12. String? subThoroughfare,
})

Implementation

const Address({
  required this.coordinates,
  required this.addressLine,
  required this.countryName,
  required this.countryCode,
  required this.featureName,
  this.postalCode,
  this.adminArea,
  this.subAdminArea,
  this.locality,
  this.subLocality,
  this.thoroughfare,
  this.subThoroughfare,
});