download method

Future<FileResponse> download(
  1. String path
)

Implementation

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

  return response;
}