copyWith method

PageNestedBodyWrite copyWith({
  1. PageBodyWrite? storage,
  2. PageBodyWrite? atlasDocFormat,
  3. PageBodyWrite? wiki,
})

Implementation

PageNestedBodyWrite copyWith(
    {PageBodyWrite? storage,
    PageBodyWrite? atlasDocFormat,
    PageBodyWrite? wiki}) {
  return PageNestedBodyWrite(
    storage: storage ?? this.storage,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
    wiki: wiki ?? this.wiki,
  );
}