LazxData<T> constructor

LazxData<T>(
  1. T _value
)

You can create LazxData with a default value. The default state will be Initial

Implementation

LazxData(this._value) {
  _state = LxState.Initial;
  push(_value);
}