Future<bool> exists(String path) async { final result = await room.sendRequest("storage.exists", {"path": path}); return (result as JsonResponse).json["exists"]; }