Control constructor

Control({
  1. bool? manualDrive,
  2. bool? screenControl,
  3. Locations? locations,
  4. bool? blockRobotInteraction,
})

Implementation

Control({
  this.manualDrive,
  this.screenControl,
  this.locations,
  this.blockRobotInteraction,
});