MaterialRefDto typedef

MaterialRefDto = ({ISchoolCourseDto course, String? href, String? title})

Reference to a course material file in i-School Plus.

Implementation

typedef MaterialRefDto = ({
  /// The course this material belongs to.
  ISchoolCourseDto course,

  /// Title/filename of the material.
  String? title,

  /// SCORM resource identifier for the material.
  ///
  /// This is an encoded identifier from the SCORM manifest.
  /// This value is used internally by I-School Plus to locate the resource.
  String? href,
});