SportPrograms constructor

SportPrograms({
  1. String? id,
  2. int? cardType,
  3. int? numberOfExercices,
  4. int? totalDuration,
  5. int? programOwnerProId,
  6. int? programPropertyId,
  7. int? isPublished,
  8. String? programPictureUrl,
  9. String? name,
  10. String? description,
  11. List<ProgramContents>? programContents,
  12. ProgramProperty? programProperty,
})

Implementation

SportPrograms(
    {this.id,
    this.cardType,
    this.numberOfExercices,
    this.totalDuration,
    this.programOwnerProId,
    this.programPropertyId,
    this.isPublished,
    this.programPictureUrl,
    this.name,
    this.description,
    this.programContents,
    this.programProperty});