get method
GET请求
Implementation
Future<HttpResponseData> get(api,
{params,
bool withLoadingHint = true,
bool withErrorHint = true,
String? contentType}) async {
return await _request(
api: api,
method: 'get',
params: params,
withLoadingHint: withLoadingHint,
withErrorHint: withErrorHint,
contentType: contentType);
}