Pose constructor

Pose({
  1. double? accuracyMeters,
  2. double? altitude,
  3. String? gpsRecordTimestampUnixEpoch,
  4. double? heading,
  5. LatLng? latLngPair,
  6. Level? level,
  7. double? pitch,
  8. double? roll,
})

Implementation

Pose({
  this.accuracyMeters,
  this.altitude,
  this.gpsRecordTimestampUnixEpoch,
  this.heading,
  this.latLngPair,
  this.level,
  this.pitch,
  this.roll,
});