Odometry constructor

Odometry({
  1. required uint64_t timeUsec,
  2. required float x,
  3. required float y,
  4. required float z,
  5. required List<float> q,
  6. required float vx,
  7. required float vy,
  8. required float vz,
  9. required float rollspeed,
  10. required float pitchspeed,
  11. required float yawspeed,
  12. required List<float> poseCovariance,
  13. required List<float> velocityCovariance,
  14. required MavFrame frameId,
  15. required MavFrame childFrameId,
  16. required uint8_t resetCounter,
  17. required MavEstimatorType estimatorType,
  18. required int8_t quality,
})

Implementation

Odometry({
  required this.timeUsec,
  required this.x,
  required this.y,
  required this.z,
  required this.q,
  required this.vx,
  required this.vy,
  required this.vz,
  required this.rollspeed,
  required this.pitchspeed,
  required this.yawspeed,
  required this.poseCovariance,
  required this.velocityCovariance,
  required this.frameId,
  required this.childFrameId,
  required this.resetCounter,
  required this.estimatorType,
  required this.quality,
});