GpsModel constructor

GpsModel(
  1. double? bearingAccuracy,
  2. double? bearingAngle,
  3. double? geomagneticFieldDeclination,
  4. double? geomagneticFieldInclination,
  5. int? gpsTimestamp,
  6. double? latitude,
  7. double? locationAccuracy,
  8. double? longitude,
  9. double? speed,
  10. double? speedAccuracyMetersPerSecond,
  11. int versioncode,
)

Implementation

GpsModel(
    this.bearingAccuracy,
    this.bearingAngle,
    this.geomagneticFieldDeclination,
    this.geomagneticFieldInclination,
    this.gpsTimestamp,
    this.latitude,
    this.locationAccuracy,
    this.longitude,
    this.speed,
    this.speedAccuracyMetersPerSecond,
    this.versioncode);