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