copyWith method

CustomContentBodySingle copyWith({
  1. BodyType? raw,
  2. BodyType? storage,
  3. BodyType? atlasDocFormat,
  4. BodyType? view,
})

Implementation

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