Course class
Constructors
-
Course({required String code, required String title, String? className, String? group, required String? units, String? hours, String? required, String? at, required List<SectionTime> times, Location? location, required List<String> instructors})
-
-
Course.fromJson(Map<String, dynamic> json)
-
factory
-
Course.fromRawJson(String str)
-
factory
Methods
-
copyWith({String? code, String? title, String? className, String? group, String? units, String? hours, String? required, String? at, List<SectionTime>? times, Location? location, List<String>? instructors})
→ Course
-
-
getInstructors()
→ String
-
-
getTimesShortName(List<TimeCode>? timeCode)
→ String
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson()
→ Map<String, dynamic>
-
-
toRawJson()
→ String
-
-
toString()
→ String
-
A string representation of this object.
inherited