SpeedStatus constructor

const SpeedStatus({
  1. Key? key,
  2. bool showProgress = true,
  3. bool showStatusText = true,
  4. bool showDetails = true,
})

Implementation

const SpeedStatus({
  super.key,
  this.showProgress = true,
  this.showStatusText = true,
  this.showDetails = true,
});