onChange property
Stream<SetChangeNotification<E> >
get
onChange
Implementation
Stream<SetChangeNotification<E>> get onChange {
final ret = StreamController<SetChangeNotification<E>>();
ret.addStream(_onChange);
return ret.stream.asBroadcastStream();
}