onChildNodeInserted property

Stream<ChildNodeInsertedEvent> onChildNodeInserted

Implementation

Stream<ChildNodeInsertedEvent> get onChildNodeInserted => eventStream(
    'DOM.childNodeInserted',
    (WipEvent event) => ChildNodeInsertedEvent(event.json));