copyWith method

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