download method
Download the entire object as a stream.
Implementation
@override
Future<Stream<List<int>>> download(String path) async {
final key = _fullKey(path);
final stream = await client.getObject(bucket, key);
return stream.map((chunk) => Uint8List.fromList(chunk).toList());
}