ArtifactStore constructor

ArtifactStore({
  1. required String location,
  2. required ArtifactStoreType type,
  3. EncryptionKey? encryptionKey,
})

Implementation

ArtifactStore({
  required this.location,
  required this.type,
  this.encryptionKey,
});