Priority constructor

Priority({
  1. String? description,
  2. String? iconUrl,
  3. String? id,
  4. bool? isDefault,
  5. String? name,
  6. String? self,
  7. String? statusColor,
})

Implementation

Priority(
    {this.description,
    this.iconUrl,
    this.id,
    bool? isDefault,
    this.name,
    this.self,
    this.statusColor})
    : isDefault = isDefault ?? false;