read method

Future<Uint8List> read(
  1. String path
)

Read the full body at the scoped key. Throws FileNotFoundError when absent.

Implementation

Future<Uint8List> read(String path) {
  validateKey(path);
  return _backend.read(key(path));
}