SpeedDisplay constructor

const SpeedDisplay({
  1. Key? key,
  2. bool showLabels = true,
  3. bool showMode = true,
  4. bool showInterval = true,
  5. double fontSize = 16,
  6. MainAxisAlignment alignment = MainAxisAlignment.center,
  7. EdgeInsets padding = const EdgeInsets.all(16),
})

Implementation

const SpeedDisplay({
  super.key,
  this.showLabels = true,
  this.showMode = true,
  this.showInterval = true,
  this.fontSize = 16,
  this.alignment = MainAxisAlignment.center,
  this.padding = const EdgeInsets.all(16),
});