copyWith method
ContentTemplateBodyCreate
copyWith({
- ContentBodyCreate? view,
- ContentBodyCreate? exportView,
- ContentBodyCreate? styledView,
- ContentBodyCreate? storage,
- ContentBodyCreate? editor,
- ContentBodyCreate? editor2,
- ContentBodyCreate? wiki,
- ContentBodyCreate? atlasDocFormat,
- ContentBodyCreate? anonymousExportView,
Implementation
ContentTemplateBodyCreate copyWith(
{ContentBodyCreate? view,
ContentBodyCreate? exportView,
ContentBodyCreate? styledView,
ContentBodyCreate? storage,
ContentBodyCreate? editor,
ContentBodyCreate? editor2,
ContentBodyCreate? wiki,
ContentBodyCreate? atlasDocFormat,
ContentBodyCreate? anonymousExportView}) {
return ContentTemplateBodyCreate(
view: view ?? this.view,
exportView: exportView ?? this.exportView,
styledView: styledView ?? this.styledView,
storage: storage ?? this.storage,
editor: editor ?? this.editor,
editor2: editor2 ?? this.editor2,
wiki: wiki ?? this.wiki,
atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
anonymousExportView: anonymousExportView ?? this.anonymousExportView,
);
}