insertedNodes property

Stream<NodeInsertEvent<INode>> get insertedNodes
override

The insertNodes stream is not allowed for the ListenableNode. The index based operations like 'insert' are not implemented in ListenableNode

Implementation

Stream<
    NodeInsertEvent<
        INode>> get insertedNodes => throw ActionNotAllowedException(
    this,
    "The insertNodes stream is not allowed"
    "for the ListenableNode. The index based operations like 'insert' are "
    "not implemented in ListenableNode");