copyWith method

CommentNestedBodyWrite copyWith({
  1. CommentBodyWrite? storage,
  2. CommentBodyWrite? atlasDocFormat,
  3. 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,
  );
}