getResponseBody method

Future<GetResponseBodyResult> getResponseBody(
  1. RequestId requestId
)

Causes the body of the response to be received from the server and returned as a single string. May only be issued for a request that is paused in the Response stage and is mutually exclusive with takeResponseBodyForInterceptionAsStream. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior. requestId Identifier for the intercepted request to get body for.

Implementation

Future<GetResponseBodyResult> getResponseBody(RequestId requestId) async {
  var result = await _client.send('Fetch.getResponseBody', {
    'requestId': requestId,
  });
  return GetResponseBodyResult.fromJson(result);
}