copyWith method
Implementation
EmbeddedResource copyWith({
Object? annotations = _acpCopyWithAbsent,
Object? resource = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => EmbeddedResource(
annotations: identical(annotations, _acpCopyWithAbsent)
? this.annotations
: annotations as Annotations?,
resource: identical(resource, _acpCopyWithAbsent)
? this.resource
: resource as EmbeddedResourceResource,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);