copyWith method

CustomContentBodyBulk copyWith({
  1. BodyType? raw,
  2. BodyType? storage,
  3. BodyType? atlasDocFormat,
})

Implementation

CustomContentBodyBulk copyWith(
    {BodyType? raw, BodyType? storage, BodyType? atlasDocFormat}) {
  return CustomContentBodyBulk(
    raw: raw ?? this.raw,
    storage: storage ?? this.storage,
    atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
  );
}