SpeedControls constructor

const SpeedControls({
  1. Key? key,
  2. bool showModeToggle = true,
  3. bool showIntervalSelector = true,
  4. bool showStartStop = true,
  5. List<int> intervalOptions = const [3, 5, 10],
})

Implementation

const SpeedControls({
  super.key,
  this.showModeToggle = true,
  this.showIntervalSelector = true,
  this.showStartStop = true,
  this.intervalOptions = const [3, 5, 10],
});