onChange property

Implementation

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