HTTP get method url request url with query string (required)
url
static Future<dynamic> httpGet(Uri url) async => http .get(url) .then(_parseResponse) .catchError((error) => Future.error(error));