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