Status constructor

Status({
  1. String? statusId,
  2. String? name,
  3. ApiColor? color,
  4. String? updatedAt,
})

Implementation

Status({
    this.statusId,
    this.name,
    this.color,
    this.updatedAt,});