getAsync method

Future<Response> getAsync (String endPoint)

Implementation

Future<Response> getAsync(String endPoint) async {

  var url = this._getOAuthURL("GET", endPoint);

  return http.get(url);

}