maxWidth property

double maxWidth
inherited

Max width of the item.

Implementation

double get maxWidth => _maxWidth;
void maxWidth=(double value)
inherited

Change the _maxWidth field value. maxWidthChanged will be invoked only if the field's value has changed.

Implementation

set maxWidth(double value) {
  if (_maxWidth == value) {
    return;
  }
  double from = _maxWidth;
  _maxWidth = value;
  if (hasValidated) {
    maxWidthChanged(from, value);
  }
}