copyWith method
Implementation
AssociatedItemBean copyWith(
{String? id,
String? name,
String? parentId,
String? parentName,
String? typeName}) {
return AssociatedItemBean(
id: id ?? this.id,
name: name ?? this.name,
parentId: parentId ?? this.parentId,
parentName: parentName ?? this.parentName,
typeName: typeName ?? this.typeName,
);
}