RxImpl<T> constructor
RxImpl<T> (
- 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);
}