SMExercise constructor

SMExercise({
  1. String? name,
  2. int? totalSeconds,
  3. int? introSeconds,
  4. String? videoInstruction,
  5. String? exerciseIntro,
  6. List<UIElement>? uiElements,
  7. required String detector,
  8. Bool? repBased,
  9. String? exerciseClosure,
  10. int? targetReps,
  11. int? targetTime,
  12. int? scoreFactor,
})

Implementation

SMExercise(
    {this.name,
    this.totalSeconds,
    this.introSeconds,
    this.videoInstruction,
    this.exerciseIntro,
    this.uiElements,
    required this.detector,
    this.repBased,
    this.exerciseClosure,
    this.targetReps,
    this.targetTime,
    this.scoreFactor});