continueWithAuth method
Continues a request supplying authChallengeResponse following authRequired event.
requestId
An id the client received in authRequired event.
authChallengeResponse
Response to with an authChallenge.
Implementation
Future<void> continueWithAuth(
RequestId requestId, AuthChallengeResponse authChallengeResponse) async {
await _client.send('Fetch.continueWithAuth', {
'requestId': requestId,
'authChallengeResponse': authChallengeResponse,
});
}