ProgramContents constructor

ProgramContents({
  1. String? id,
  2. int? subcardOrderNumber,
  3. String? subcardPictureUrl,
  4. int? exerciceDuration,
  5. dynamic breakAfter,
  6. int? numberOfRepetitions,
  7. dynamic values,
  8. int? breakBetweenRep,
  9. dynamic numberOfSeries,
  10. dynamic materialPictureUrl,
  11. dynamic exLottieUrl,
  12. dynamic exGifUrl,
  13. dynamic exVideoUrl,
  14. int? isBreak,
  15. String? subcardTitle,
  16. String? description,
  17. String? subcardVideoUrl,
  18. dynamic materialDescription,
  19. bool isCompleted = false,
})

Implementation

ProgramContents({
  this.id,
  this.subcardOrderNumber,
  this.subcardPictureUrl,
  this.exerciceDuration,
  this.breakAfter,
  this.numberOfRepetitions,
  this.values,
  this.breakBetweenRep,
  this.numberOfSeries,
  this.materialPictureUrl,
  this.exLottieUrl,
  this.exGifUrl,
  this.exVideoUrl,
  this.isBreak,
  this.subcardTitle,
  this.description,
  this.subcardVideoUrl,
  this.materialDescription,
  this.isCompleted = false,
});