get method

  1. @override
Future<List<int>> get(
  1. String path
)
override

Retrieves the bytes saved at the given path on the disk.

Implementation

@override
Future<List<int>> get(String path) async {
  final file = _file(path);
  return file.readAsBytes();
}