copyWith method
CustomContentNestedBodyWrite
copyWith({
- CustomContentBodyWrite? storage,
- CustomContentBodyWrite? atlasDocFormat,
- CustomContentBodyWrite? raw,
Implementation
CustomContentNestedBodyWrite copyWith(
{CustomContentBodyWrite? storage,
CustomContentBodyWrite? atlasDocFormat,
CustomContentBodyWrite? raw}) {
return CustomContentNestedBodyWrite(
storage: storage ?? this.storage,
atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
raw: raw ?? this.raw,
);
}