RunnerStatusChip constructor

const RunnerStatusChip({
  1. Key? key,
  2. required WorkoutRunnerController controller,
  3. DurationFormatter? format,
  4. bool showExerciseTimer = true,
  5. bool showSetTimer = false,
  6. bool dense = true,
  7. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 8),
  8. bool showIcon = true,
  9. String? tooltip,
})

Implementation

const RunnerStatusChip({
  super.key,
  required this.controller,
  this.format,
  this.showExerciseTimer = true,
  this.showSetTimer = false,
  this.dense = true,
  this.padding = const EdgeInsets.symmetric(horizontal: 8),
  this.showIcon = true,
  this.tooltip,
});