ProgramGameFinalModel constructor

const ProgramGameFinalModel({
  1. int? id,
  2. String? name,
  3. int? schoolId,
  4. int? courseId,
  5. int? stageId,
  6. String? createdAt,
  7. String? updatedAt,
  8. String? image,
  9. CourseGameFinalModel? course,
})

Implementation

const ProgramGameFinalModel(
    {this.id,
    this.name,
    this.schoolId,
    this.courseId,
    this.stageId,
    this.createdAt,
    this.updatedAt,
    this.image,
    // this.studentTests,
    this.course});