SimpleAddress constructor

SimpleAddress({
  1. String? streetNumber,
  2. String? route,
  3. String? subLocality,
  4. String? locality,
  5. String? administrativeAreaLevel3,
  6. String? administrativeAreaLevel2,
  7. String? administrativeAreaLevel1,
  8. String? country,
  9. String? postalCode,
  10. required LatLngLiteral location,
  11. required String formattedAddress,
})

Implementation

SimpleAddress({
  this.streetNumber,
  this.route,
  this.subLocality,
  this.locality,
  this.administrativeAreaLevel3,
  this.administrativeAreaLevel2,
  this.administrativeAreaLevel1,
  this.country,
  this.postalCode,
  required this.location,
  required this.formattedAddress,
});