SpeedOverlay constructor

const SpeedOverlay({
  1. Key? key,
  2. double top = 80,
  3. double right = 10,
  4. bool showMode = true,
  5. bool showInterval = true,
  6. bool showStatus = true,
})

Implementation

const SpeedOverlay({
  super.key,
  this.top = 80,
  this.right = 10,
  this.showMode = true,
  this.showInterval = true,
  this.showStatus = true,
});