LabelledOccurenceDto constructor

LabelledOccurenceDto({
  1. String? label,
  2. int? occurence,
})

Returns a new LabelledOccurenceDto instance.

Implementation

LabelledOccurenceDto({
  this.label,
  this.occurence,
});