LocalPositionNedCov constructor

LocalPositionNedCov({
  1. required uint64_t timeUsec,
  2. required float x,
  3. required float y,
  4. required float z,
  5. required float vx,
  6. required float vy,
  7. required float vz,
  8. required float ax,
  9. required float ay,
  10. required float az,
  11. required List<float> covariance,
  12. required MavEstimatorType estimatorType,
})

Implementation

LocalPositionNedCov({
  required this.timeUsec,
  required this.x,
  required this.y,
  required this.z,
  required this.vx,
  required this.vy,
  required this.vz,
  required this.ax,
  required this.ay,
  required this.az,
  required this.covariance,
  required this.estimatorType,
});