ControlPanel constructor

const ControlPanel({
  1. required ModuleInterface module,
  2. void turnOn()?,
  3. void turnOff()?,
  4. void recordStart()?,
  5. void recordPause()?,
  6. void recordStop()?,
  7. Key? key,
})

Implementation

const ControlPanel({
  required this.module,
  this.turnOn,
  this.turnOff,
  this.recordStart,
  this.recordPause,
  this.recordStop,
  super.key,
});