PlannedWorkoutStep constructor

PlannedWorkoutStep({
  1. int? order,
  2. required int type,
  3. String? name,
  4. String? description,
  5. int? intensity,
  6. List<PlannedWorkoutStepDuration>? durations,
  7. List<PlannedWorkoutStepTarget>? targets,
})

Implementation

PlannedWorkoutStep({this.order, required this.type , this.name, this.description, this.intensity, this.durations, this.targets});