httpGet static method

Future httpGet(
  1. Uri url
)

HTTP get method url request url with query string (required)

Implementation

static Future<dynamic> httpGet(Uri url) async => http
    .get(url)
    .then(_parseResponse)
    .catchError((error) => Future.error(error));