copyWith method

Implementation

CustomContentNestedBodyWrite copyWith(
    {CustomContentBodyWrite? storage,
    CustomContentBodyWrite? atlasDocFormat,
    CustomContentBodyWrite? raw}) {
  return CustomContentNestedBodyWrite(
    storage: storage ?? this.storage,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
    raw: raw ?? this.raw,
  );
}