getMaterials method

Future<List<CourseMaterial>> getMaterials(
  1. CourseOffering courseOffering
)

Gets course materials (files, recordings, etc.) from I-School Plus.

Throws Exception on network failure.

Implementation

Future<List<CourseMaterial>> getMaterials(
  CourseOffering courseOffering,
) async {
  throw UnimplementedError();
}