$RxWrapper<T>.withValue constructor

$RxWrapper<T>.withValue(
  1. T value
)

Implementation

factory $RxWrapper.withValue(T value) {
	$RxWrapper<T> rxw = $RxWrapper();
	rxw._setInitialValue(value);
	return rxw;
}