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