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