getCourseOffering method

Future<CourseOffering?> getCourseOffering(
  1. int id
)

Gets a course offering with related data (teachers, classrooms, schedules).

Returns null if not found.

Implementation

Future<CourseOffering?> getCourseOffering(int id) async {
  throw UnimplementedError();
}