import 'student.dart'; class University { List students = []; void addStudent(Student student) { students.add(student); } void displayAllStudents() { for (var student in students) { student.displayInfo(); } } List getStudentsByCourse(String course) { return students.where((student) => student.courses.contains(course)).toList(); } }