onChildNodeInserted property

Stream<ChildNodeInsertedEvent> onChildNodeInserted

Mirrors DOMNodeInserted event.

Implementation

Stream<ChildNodeInsertedEvent> get onChildNodeInserted => _client.onEvent
    .where((event) => event.name == 'DOM.childNodeInserted')
    .map((event) => ChildNodeInsertedEvent.fromJson(event.parameters));