Skip to content

Instantly share code, notes, and snippets.

@Levi-Lesches
Created March 3, 2020 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Levi-Lesches/f83d22ad6e9f1b285c140e11bf461d1a to your computer and use it in GitHub Desktop.
Save Levi-Lesches/f83d22ad6e9f1b285c140e11bf461d1a to your computer and use it in GitHub Desktop.
Searches for class in schedule
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
Map<Letters, List<int>> getSubjectInSchedule() {}
class Subject {
String name, teacher;
}
class Student {
Map<Letters, List<PeriodData>> schedule;
}
enum Letters {A}
class PeriodData {
String room, id;
}
Map<String, Subject> sectionIds;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment