copyWith method
Implementation
ProjectCategory copyWith(
{String? description, String? id, String? name, String? self}) {
return ProjectCategory(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
self: self ?? this.self,
);
}