Location constructor

Location({
  1. double? latitude,
  2. double? longitude,
  3. double? altitude,
  4. double? speed,
  5. double? bearing,
  6. double? accuracy,
  7. double? verticalAccuracyMeters,
  8. double? bearingAccuracyDegrees,
  9. double? speedAccuracyMetersPerSecond,
  10. int? time,
  11. bool? fromMockProvider,
})

Implementation

Location({
  this.latitude,
  this.longitude,
  this.altitude,
  this.speed,
  this.bearing,
  this.accuracy,
  this.verticalAccuracyMeters,
  this.bearingAccuracyDegrees,
  this.speedAccuracyMetersPerSecond,
  this.time,
  this.fromMockProvider,
});