onScriptParsed property

Stream<ScriptParsedEvent> onScriptParsed

Implementation

Stream<ScriptParsedEvent> get onScriptParsed => eventStream(
    'Debugger.scriptParsed',
    (WipEvent event) => ScriptParsedEvent(event.json));