copyWith method
ContentBodyValue
copyWith({
- ContentBody? view,
- ContentBody? exportView,
- ContentBody? styledView,
- ContentBody? storage,
- ContentBody? wiki,
- ContentBody? editor,
- ContentBody? editor2,
- ContentBody? anonymousExportView,
- ContentBody? atlasDocFormat,
- ContentBody? dynamic$,
- ContentBody? raw,
- ContentBodyValueExpandable? expandable,
Implementation
ContentBodyValue copyWith(
{ContentBody? view,
ContentBody? exportView,
ContentBody? styledView,
ContentBody? storage,
ContentBody? wiki,
ContentBody? editor,
ContentBody? editor2,
ContentBody? anonymousExportView,
ContentBody? atlasDocFormat,
ContentBody? dynamic$,
ContentBody? raw,
ContentBodyValueExpandable? expandable}) {
return ContentBodyValue(
view: view ?? this.view,
exportView: exportView ?? this.exportView,
styledView: styledView ?? this.styledView,
storage: storage ?? this.storage,
wiki: wiki ?? this.wiki,
editor: editor ?? this.editor,
editor2: editor2 ?? this.editor2,
anonymousExportView: anonymousExportView ?? this.anonymousExportView,
atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
dynamic$: dynamic$ ?? this.dynamic$,
raw: raw ?? this.raw,
expandable: expandable ?? this.expandable,
);
}