$RxWrapper<T>.withRx constructor

$RxWrapper<T>.withRx(
  1. Rx<T> rx
)

Implementation

factory $RxWrapper.withRx(Rx<T> rx) {
	$RxWrapper<T> rxw = $RxWrapper();
	rxw._rx = rx;
	rxw._isInit = true;
	return rxw;
}