copyWith method

BodyBulk copyWith({
  1. BodyType? storage,
  2. BodyType? atlasDocFormat,
})

Implementation

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