loopValue property

int loopValue

Loop value option matches Loop enumeration.

Implementation

int get loopValue => _loopValue;
void loopValue=(int value)

Change the _loopValue field value. loopValueChanged will be invoked only if the field's value has changed.

Implementation

set loopValue(int value) {
  if (_loopValue == value) {
    return;
  }
  int from = _loopValue;
  _loopValue = value;
  if (hasValidated) {
    loopValueChanged(from, value);
  }
}