onExecutionContextCreated property
Stream<ExecutionContextDescription>
get
onExecutionContextCreated
Issued when new execution context is created.
Implementation
Stream<ExecutionContextDescription> get onExecutionContextCreated =>
eventStream(
'Runtime.executionContextCreated',
(WipEvent event) =>
ExecutionContextDescription(event.params!['context']));