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