Criterion constructor

Criterion({
  1. String? description,
  2. String? id,
  3. List<Level>? levels,
  4. String? title,
})

Implementation

Criterion({
  this.description,
  this.id,
  this.levels,
  this.title,
});