SimpleSubjectLevel constructor

SimpleSubjectLevel({
  1. int? id,
  2. required String name,
  3. required String slug,
  4. String? levelName,
  5. String? subjectName,
  6. String? subjectSlug,
  7. String? levelSlug,
  8. String? experienceName,
})

Returns a new SimpleSubjectLevel instance.

Implementation

SimpleSubjectLevel({
  this.id,
  required this.name,
  required this.slug,
  this.levelName,
  this.subjectName,
  this.subjectSlug,
  this.levelSlug,
  this.experienceName,
});