Perform GET request
Future<Response> get(String url) async { try { return await dio.get(url); } catch (e) { rethrow; } }