materialize method
Materialize a stored object as a platform-local handle.
See StorageBackend.materialize for the full behavior matrix across backends.
Implementation
Future<MaterializedFile> materialize(
String path, {
bool decrypt = true,
bool exclusive = false,
}) {
validateKey(path);
return _backend.materialize(
key(path),
decrypt: decrypt,
exclusive: exclusive,
);
}