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