copyWith method
      
ContentCreateBody
copyWith({ 
    
    
- ContentBodyCreate? view,
- ContentBodyCreate? exportView,
- ContentBodyCreate? styledView,
- ContentBodyCreate? storage,
- ContentBodyCreate? editor,
- ContentBodyCreate? editor2,
- ContentBodyCreate? wiki,
- ContentBodyCreate? anonymousExportView,
- ContentBodyCreate? plain,
- ContentBodyCreate? atlasDocFormat,
- ContentBodyCreate? raw,
Implementation
ContentCreateBody copyWith(
    {ContentBodyCreate? view,
    ContentBodyCreate? exportView,
    ContentBodyCreate? styledView,
    ContentBodyCreate? storage,
    ContentBodyCreate? editor,
    ContentBodyCreate? editor2,
    ContentBodyCreate? wiki,
    ContentBodyCreate? anonymousExportView,
    ContentBodyCreate? plain,
    ContentBodyCreate? atlasDocFormat,
    ContentBodyCreate? raw}) {
  return ContentCreateBody(
    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,
    anonymousExportView: anonymousExportView ?? this.anonymousExportView,
    plain: plain ?? this.plain,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
    raw: raw ?? this.raw,
  );
}