LocationData constructor

LocationData({
  1. double? latitude,
  2. double? longitude,
  3. double? accuracy,
  4. double? altitude,
  5. double? bearing,
  6. double? bearingAccuracyDegrees,
  7. double? elaspedRealTimeNanos,
  8. double? elaspedRealTimeUncertaintyNanos,
  9. int? satellites,
  10. double? speed,
  11. double? speedAccuracy,
  12. double? time,
  13. double? verticalAccuracy,
  14. bool? isMock,
})

Implementation

LocationData({
  this.latitude,
  this.longitude,
  this.accuracy,
  this.altitude,
  this.bearing,
  this.bearingAccuracyDegrees,
  this.elaspedRealTimeNanos,
  this.elaspedRealTimeUncertaintyNanos,
  this.satellites,
  this.speed,
  this.speedAccuracy,
  this.time,
  this.verticalAccuracy,
  this.isMock,
});