getResponse method
Future<HttpClientResponse>
getResponse(
- String method,
- String action, {
- Map<
String, String?> params = const {}, - Map<
String, String?> headers = const {},
inherited
Implementation
Future<HttpClientResponse> getResponse(String method, String action,
{Map<String, String?> params = const {},
Map<String, String?> headers = const {}}) async {
var req =
await getRequest(method, action, params: params, headers: headers);
var res = await req.close();
return res;
}