get response by url
url
Future<R> get(String url) async { if (!exist(url)) { return R.error(code: RCode.notFound, msg: '$url not found!'); } return _allBridges[url]!.call(); }