copyWith method
Implementation
BoardCreateBeanLocation copyWith(
{BoardCreateBeanLocationType? type, String? projectKeyOrId}) {
return BoardCreateBeanLocation(
type: type ?? this.type,
projectKeyOrId: projectKeyOrId ?? this.projectKeyOrId,
);
}