gridRowEnd property

int gridRowEnd
inherited

End position of grid item in a row.

Implementation

int get gridRowEnd => _gridRowEnd;
void gridRowEnd=(int value)
inherited

Change the _gridRowEnd field value. gridRowEndChanged will be invoked only if the field's value has changed.

Implementation

set gridRowEnd(int value) {
  if (_gridRowEnd == value) {
    return;
  }
  int from = _gridRowEnd;
  _gridRowEnd = value;
  if (hasValidated) {
    gridRowEndChanged(from, value);
  }
}