PVCtxStorageProxy constructor

PVCtxStorageProxy({
  1. required PVCtx ctx,
  2. required StorageType storageType,
  3. required bool isMetadata,
})

Create a storage proxy.

Typically created by PVCtx.entry and PVCtx.meta, not directly.

Implementation

PVCtxStorageProxy({
  required this.ctx,
  required this.storageType,
  required this.isMetadata,
});