RxState<T> constructor

RxState<T>(
  1. T initialValue
)

Constructor, nhận giá trị mặc định

Implementation

RxState(T initialValue)
    : _defaultValue = initialValue,
      _subject = BehaviorSubject<T>.seeded(initialValue);