copyWith method
Implementation
StatusCategory copyWith(
{String? colorName, int? id, String? key, String? name, String? self}) {
return StatusCategory(
colorName: colorName ?? this.colorName,
id: id ?? this.id,
key: key ?? this.key,
name: name ?? this.name,
self: self ?? this.self,
);
}