RxImpl<T> constructor

RxImpl<T>(
  1. T _value
)

Constructor of RxImpl.

Implementation

RxImpl(this._value) {
  assert(_value is! Type);
  final tag = tagCounter++;
  aspects.add(tag);

  /// add to _subscriberList
  _subscribersList.add({});
  assert(_subscribersList.length == tagCounter);
}