MatchedGeoLocation constructor

const MatchedGeoLocation({
  1. double? lat,
  2. double? lng,
  3. int? distance,
})

Returns a new MatchedGeoLocation instance.

Implementation

const MatchedGeoLocation({
  this.lat,
  this.lng,
  this.distance,
});