workStart property

int workStart

Start of the work area in frames.

Implementation

int get workStart => _workStart;
void workStart=(int value)

Change the _workStart field value. workStartChanged will be invoked only if the field's value has changed.

Implementation

set workStart(int value) {
  if (_workStart == value) {
    return;
  }
  int from = _workStart;
  _workStart = value;
  if (hasValidated) {
    workStartChanged(from, value);
  }
}