Location constructor

Location({
  1. LatLng? latLng,
  2. String? locationType,
  3. PostalAddress? postalAddress,
  4. double? radiusInMiles,
})

Implementation

Location({
  this.latLng,
  this.locationType,
  this.postalAddress,
  this.radiusInMiles,
});