GroupSubjects constructor
GroupSubjects({
- int? id,
- required String name,
- List<
SubjectLevels> subjects = const [],
Returns a new GroupSubjects instance.
Implementation
GroupSubjects({
this.id,
required this.name,
this.subjects = const [],
});