GeolocationCoordinate constructor

const GeolocationCoordinate({
  1. double? latitude,
  2. double? longitude,
  3. double? accuracy,
})

Implementation

const GeolocationCoordinate({
  this.latitude,
  this.longitude,
  this.accuracy,
});