setValue method

void setValue(
  1. T value
)

Implementation

void setValue(T value) {
	if (this._isInit) {
		this._rx.value = value;
	}
	else {
		this._setInitialValue(value);
	}
}