getBytes static method
Future<HttpResult>
getBytes(
- String? url,
- Map<
String, String?> ? header, - dynamic callback(
- HttpResult result
发送get请求*
Implementation
static Future<HttpResult> getBytes(String? url,Map<String, String?>? header,Function(HttpResult result) callback) async {
return await request("GET", ResponseType.bytes, url, header, null, callback);
}