SupplyTeachingLevel constructor

SupplyTeachingLevel({
  1. int? id,
  2. required String name,
  3. int? ordering,
})

Returns a new SupplyTeachingLevel instance.

Implementation

SupplyTeachingLevel({
  this.id,
  required this.name,
  this.ordering,
});