Changes to nodes will be added to this controller's stream.
See updateList.
Source
BroadcastStreamController<String> get listChangeController {
if (_listChangeController == null) {
_listChangeController = new BroadcastStreamController<String>(
() {
onStartListListen();
}, () {
onAllListCancel();
}, null, true);
}
return _listChangeController;
}