RxImpl<T> constructor

RxImpl<T>(
  1. T _value
)

Constructor: add self to the static rx container and sholud use setPub to set the Pub when the model initialized.

Implementation

RxImpl(this._value) {
  // RxImpl(T initial) : _value = initial {
  ///
  /// variables and constructor calling sequence:
  /// 1. Model inline variables ->
  /// 2. Pub inline variables ->
  /// 3. Pub constructor ->
  /// 4. Model constructor

  _initRxTag();
}