SMKitWorkout constructor

SMKitWorkout({
  1. String? id,
  2. String? name,
  3. String? workoutIntro,
  4. String? soundTrack,
  5. required List<SMKitExercise> exercises,
  6. String? getInFrame,
  7. String? bodycalFinished,
  8. String? workoutClosure,
  9. SMKitWorkoutContinuation? continuation,
})

Implementation

SMKitWorkout({
  this.id,
  this.name,
  this.workoutIntro,
  this.soundTrack,
  required this.exercises,
  this.getInFrame,
  this.bodycalFinished,
  this.workoutClosure,
  this.continuation,
});