OperationPriority constructor

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

Returns a new OperationPriority instance.

Implementation

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