Drone constructor

Drone({
  1. String? status,
  2. String? error,
  3. double? batteryPercent,
  4. double? altitude,
  5. double? latitude,
  6. double? longitude,
  7. double? speed,
  8. double? roll,
  9. double? pitch,
  10. double? yaw,
})

Implementation

Drone({
  this.status,
  this.error,
  this.batteryPercent,
  this.altitude,
  this.latitude,
  this.longitude,
  this.speed,
  this.roll,
  this.pitch,
  this.yaw,
});