rootsListChanged property

Stream<RootsListChangedNotification>? get rootsListChanged

Emits an event any time the client notifies us of a change to the list of roots it supports.

If null then the client doesn't support these notifications.

This is a broadcast stream, events are not buffered and only future events are given.

Implementation

Stream<RootsListChangedNotification>? get rootsListChanged =>
    _rootsListChangedController?.stream;