get method

Future<Response> get(
  1. String url
)

Implementation

Future<Response> get(String url) async {
  return await dio.get(url);
}