get abstract method

Future<HttpResponse> get(
  1. String url,
  2. Map<String, Object> params
)

GET request

url is the full URL for the API. params is the query parameters to be sent with the request.

Implementation

Future<HttpResponse> get(String url, Map<String, Object> params);