download method
Implementation
Future<FileResponse> download(String path) async {
final response = (await room.sendRequest("storage.download", {"path": path}) as FileResponse);
return response;
}
Future<FileResponse> download(String path) async {
final response = (await room.sendRequest("storage.download", {"path": path}) as FileResponse);
return response;
}