copyWith method

ContentBodyValue copyWith({
  1. ContentBody? view,
  2. ContentBody? exportView,
  3. ContentBody? styledView,
  4. ContentBody? storage,
  5. ContentBody? wiki,
  6. ContentBody? editor,
  7. ContentBody? editor2,
  8. ContentBody? anonymousExportView,
  9. ContentBody? atlasDocFormat,
  10. ContentBody? dynamic$,
  11. ContentBody? raw,
  12. 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,
  );
}