copyWith method

ContentBodyValueExpandable copyWith({
  1. String? editor,
  2. String? view,
  3. String? exportView,
  4. String? styledView,
  5. String? storage,
  6. String? editor2,
  7. String? anonymousExportView,
  8. String? atlasDocFormat,
  9. String? wiki,
  10. String? dynamic$,
  11. String? raw,
})

Implementation

ContentBodyValueExpandable copyWith(
    {String? editor,
    String? view,
    String? exportView,
    String? styledView,
    String? storage,
    String? editor2,
    String? anonymousExportView,
    String? atlasDocFormat,
    String? wiki,
    String? dynamic$,
    String? raw}) {
  return ContentBodyValueExpandable(
    editor: editor ?? this.editor,
    view: view ?? this.view,
    exportView: exportView ?? this.exportView,
    styledView: styledView ?? this.styledView,
    storage: storage ?? this.storage,
    editor2: editor2 ?? this.editor2,
    anonymousExportView: anonymousExportView ?? this.anonymousExportView,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
    wiki: wiki ?? this.wiki,
    dynamic$: dynamic$ ?? this.dynamic$,
    raw: raw ?? this.raw,
  );
}