get method

Future<Response> get()

Implementation

Future<Response> get() async {
  var link = toLink();
  return await makeRequest(endpoint: link, method: RequestMethods.get);
}