WorkoutConfig constructor

const WorkoutConfig({
  1. required String programId,
  2. required int week,
  3. required BodyZone bodyZone,
  4. required DifficultyLevel difficultyLevel,
  5. required WorkoutDuration workoutDuration,
  6. required SencySupportedLanguage language,
})

Implementation

const WorkoutConfig({
  required this.programId,
  required this.week,
  required this.bodyZone,
  required this.difficultyLevel,
  required this.workoutDuration,
  required this.language,
});