QuickRunner constructor

const QuickRunner({
  1. Key? key,
  2. required WorkoutRunnerController controller,
  3. List<WorkoutPlan>? plans,
  4. void onFinished(
    1. WorkoutResult?
    )?,
  5. Route<void> runnerRouteBuilder(
    1. BuildContext context,
    2. WorkoutPlan plan
    )?,
})

Implementation

const QuickRunner({
  super.key,
  required this.controller,
  this.plans,
  this.onFinished,
  this.runnerRouteBuilder,
});