fulfillRequest method

Future<void> fulfillRequest(
  1. RequestId requestId,
  2. int responseCode, {
  3. List<HeaderEntry>? responseHeaders,
  4. String? binaryResponseHeaders,
  5. String? body,
  6. String? responsePhrase,
})

Provides response to the request. requestId An id the client received in requestPaused event. responseCode An HTTP response code. responseHeaders Response headers. binaryResponseHeaders Alternative way of specifying response headers as a \0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text. body A response body. If absent, original response body will be used if the request is intercepted at the response stage and empty body will be used if the request is intercepted at the request stage. responsePhrase A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.

Implementation

Future<void> fulfillRequest(RequestId requestId, int responseCode,
    {List<HeaderEntry>? responseHeaders,
    String? binaryResponseHeaders,
    String? body,
    String? responsePhrase}) async {
  await _client.send('Fetch.fulfillRequest', {
    'requestId': requestId,
    'responseCode': responseCode,
    if (responseHeaders != null) 'responseHeaders': [...responseHeaders],
    if (binaryResponseHeaders != null)
      'binaryResponseHeaders': binaryResponseHeaders,
    if (body != null) 'body': body,
    if (responsePhrase != null) 'responsePhrase': responsePhrase,
  });
}