copyWith method
PageNestedBodyWrite
copyWith({
- PageBodyWrite? storage,
- PageBodyWrite? atlasDocFormat,
- 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,
);
}