WorkoutStep constructor

WorkoutStep({
  1. required WorkoutGoal goal,
  2. WorkoutAlert? alert,
  3. String? displayName,
})

Creates a new workout step

Implementation

WorkoutStep({
  required this.goal,
  this.alert,
  this.displayName,
});