copyWith method 
    
      
ContentBodyValueExpandable
copyWith(
{ - String? editor, 
- String? view, 
- String? exportView, 
- String? styledView, 
- String? storage, 
- String? editor2, 
- String? anonymousExportView, 
- String? atlasDocFormat, 
- String? wiki, 
- String? dynamic$, 
- 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,
  );
}