RxState<T> constructor
RxState<T> (
- T initialValue
Constructor, nhận giá trị mặc định
Implementation
RxState(T initialValue)
: _defaultValue = initialValue,
_subject = BehaviorSubject<T>.seeded(initialValue);