getSubscriptions method

List<Object> getSubscriptions(
  1. T node
)

Returns the subscriptions registered for node, or an empty list if none exist.

Implementation

List<Object> getSubscriptions(T node) =>
    UnmodifiableListView(_elementsSubscriptions?[node] ?? []);