handleCertificateError method
- @Deprecated('This command is deprecated')
- int eventId,
- CertificateErrorAction action
Handles a certificate error that fired a certificateError event.
eventId
The ID of the event.
action
The action to take on the certificate error.
Implementation
@Deprecated('This command is deprecated')
Future<void> handleCertificateError(
int eventId, CertificateErrorAction action) async {
await _client.send('Security.handleCertificateError', {
'eventId': eventId,
'action': action,
});
}