getCourseDetails method

Future<Course> getCourseDetails(
  1. String courseId
)

Gets detailed course catalog information.

Throws Exception on network failure.

Implementation

Future<Course> getCourseDetails(String courseId) async {
  throw UnimplementedError();
}