ReportPriority constructor

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

Returns a new ReportPriority instance.

Implementation

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