GradeCategory constructor

GradeCategory({
  1. int? defaultGradeDenominator,
  2. String? id,
  3. String? name,
  4. int? weight,
})

Implementation

GradeCategory({
  this.defaultGradeDenominator,
  this.id,
  this.name,
  this.weight,
});