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