copyWithWrapped method
Implementation
Category copyWithWrapped(
{Wrapped<String>? categoryId,
Wrapped<String>? group,
Wrapped<List<String>>? hierarchy}) {
return Category(
categoryId: (categoryId != null ? categoryId.value : this.categoryId),
group: (group != null ? group.value : this.group),
hierarchy: (hierarchy != null ? hierarchy.value : this.hierarchy));
}