maxHeight property

double maxHeight
inherited

Max height of the item.

Implementation

double get maxHeight => _maxHeight;
void maxHeight=(double value)
inherited

Change the _maxHeight field value. maxHeightChanged will be invoked only if the field's value has changed.

Implementation

set maxHeight(double value) {
  if (_maxHeight == value) {
    return;
  }
  double from = _maxHeight;
  _maxHeight = value;
  if (hasValidated) {
    maxHeightChanged(from, value);
  }
}