SMWorkout constructor

SMWorkout({
  1. String? id,
  2. String? name,
  3. String? workoutIntro,
  4. String? soundTrack,
  5. required List<SMExercise> exercises,
  6. String? getInFrame,
  7. String? bodycalFinished,
})

Implementation

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