copyWith method
Implementation
CustomContentBodySingle copyWith(
{BodyType? raw,
BodyType? storage,
BodyType? atlasDocFormat,
BodyType? view}) {
return CustomContentBodySingle(
raw: raw ?? this.raw,
storage: storage ?? this.storage,
atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
view: view ?? this.view,
);
}