Gets the content of the file at path.
path
Future<Uint8List> get(PathUri path) async { final buffer = BytesBuilder(copy: false); await getStream(path).forEach(buffer.add); return buffer.toBytes(); }