RxNotifier<T> constructor

RxNotifier<T>(
  1. T _value
)

Extension to ValueNotifier by transparently applying functional reactive programming (TFRP).

Implementation

RxNotifier(this._value) : super(_value);