ReportTypePriority constructor

ReportTypePriority({
  1. String? color,
  2. String? id,
  3. String? name,
  4. int? position,
  5. String? type,
})

Returns a new ReportTypePriority instance.

Implementation

ReportTypePriority({
  this.color,
  this.id,
  this.name,
  this.position,
  this.type,
});