GroupSubjects constructor

GroupSubjects({
  1. int? id,
  2. required String name,
  3. List<SubjectLevels> subjects = const [],
})

Returns a new GroupSubjects instance.

Implementation

GroupSubjects({
  this.id,
  required this.name,
  this.subjects = const [],
});