GpsMeasurement.fromPoint constructor

GpsMeasurement.fromPoint(
  1. GpsPoint point, {
  2. double? accuracy,
  3. double? heading,
  4. double? speed,
  5. double? speedAccuracy,
})

Implementation

GpsMeasurement.fromPoint(
  GpsPoint point, {
  this.accuracy,
  this.heading,
  this.speed,
  this.speedAccuracy,
}) : super(
          time: point.time,
          latitude: point.latitude,
          longitude: point.longitude,
          altitude: point.altitude);