copyWith method
Implementation
Status copyWith({ String? statusId,
String? name,
ApiColor? color,
String? updatedAt,
}) => Status( statusId: statusId ?? this.statusId,
name: name ?? this.name,
color: color ?? this.color,
updatedAt: updatedAt ?? this.updatedAt,
);