onExecutionContextDestroyed property

Stream<String> onExecutionContextDestroyed

Issued when execution context is destroyed.

Implementation

Stream<String> get onExecutionContextDestroyed => eventStream(
    'Runtime.executionContextDestroyed',
    (WipEvent event) => event.params!['executionContextId']);