copyWith method
Implementation
OrgInfo copyWith({
int? branchCount,
OrgId? id,
Optional<String?>? name
}) {
return OrgInfo(
branchCount: branchCount ?? this.branchCount,
id: id ?? this.id,
name: name != null ? name.value : this.name
);
}