hello static method
"hello world"
Implementation
static Future<void> hello({
final QueryType? queryType,
}) async {
final Response response = await HttpHelper().doGetRequest(
UriHelper.getFolksonomyUri(
path: '/',
queryType: queryType,
),
queryType: queryType,
);
_checkResponse(response);
}