Location constructor

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

Implementation

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