onExceptionRevoked property

Stream<ExceptionRevokedEvent> onExceptionRevoked

Issued when unhandled exception was revoked.

Implementation

Stream<ExceptionRevokedEvent> get onExceptionRevoked => _client.onEvent
    .where((event) => event.name == 'Runtime.exceptionRevoked')
    .map((event) => ExceptionRevokedEvent.fromJson(event.parameters));