notifier property

ReactiveNotifier<T> notifier

Returns a ReactiveNotifier object associated with this Reactive instance. The ReactiveNotifier allows listening to changes in the reactive variable.

Implementation

ReactiveNotifier<T> get notifier {
  return ReactiveNotifier(_streamController.stream);
}