Simstate constructor

Simstate({
  1. required float roll,
  2. required float pitch,
  3. required float yaw,
  4. required float xacc,
  5. required float yacc,
  6. required float zacc,
  7. required float xgyro,
  8. required float ygyro,
  9. required float zgyro,
  10. required int32_t lat,
  11. required int32_t lng,
})

Implementation

Simstate({
  required this.roll,
  required this.pitch,
  required this.yaw,
  required this.xacc,
  required this.yacc,
  required this.zacc,
  required this.xgyro,
  required this.ygyro,
  required this.zgyro,
  required this.lat,
  required this.lng,
});