copyWith method
Implementation
BodySingle copyWith(
{BodyType? storage, BodyType? atlasDocFormat, BodyType? view}) {
return BodySingle(
storage: storage ?? this.storage,
atlasDocFormat: atlasDocFormat ?? this.atlasDocFormat,
view: view ?? this.view,
);
}