CourseConfig constructor

const CourseConfig({
  1. bool? showSectionTime,
  2. bool? showInstructors,
  3. bool? showClassroomLocation,
  4. required Widget child,
})

Implementation

const CourseConfig({
  this.showSectionTime,
  this.showInstructors,
  this.showClassroomLocation,
  required Widget child,
}) : super(child: child);