LocationResult constructor

LocationResult({
  1. LatLng latLng = const LatLng(28.8993447, 76.6228793),
  2. String address = "",
  3. String placeId = "",
  4. String streetNumber = "",
  5. String route = "",
  6. String locality = "",
  7. String administrativeAreaLevel2 = "",
  8. String administrativeAreaLevel1 = "",
  9. String country = "",
  10. String postalCode = "",
})

Implementation

LocationResult({
  this.latLng = const LatLng(28.8993447, 76.6228793),
  this.address = "",
  this.placeId = "",
  this.streetNumber = "",
  this.route = "",
  this.locality = "",
  this.administrativeAreaLevel2 = "",
  this.administrativeAreaLevel1 = "",
  this.country = "",
  this.postalCode = "",
});