minWidth property

double minWidth
inherited

Min width of the item.

Implementation

double get minWidth => _minWidth;
void minWidth=(double value)
inherited

Change the _minWidth field value. minWidthChanged will be invoked only if the field's value has changed.

Implementation

set minWidth(double value) {
  if (_minWidth == value) {
    return;
  }
  double from = _minWidth;
  _minWidth = value;
  if (hasValidated) {
    minWidthChanged(from, value);
  }
}