copyWith method
      
CommentNestedBodyWrite
copyWith({ 
    
    
- CommentBodyWrite? storage,
- CommentBodyWrite? atlasDocFormat,
- CommentBodyWrite? wiki,
Implementation
CommentNestedBodyWrite copyWith(
    {CommentBodyWrite? storage,
    CommentBodyWrite? atlasDocFormat,
    CommentBodyWrite? wiki}) {
  return CommentNestedBodyWrite(
    storage: storage ?? this.storage,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
    wiki: wiki ?? this.wiki,
  );
}