flexShrink property

double flexShrink
inherited

Flex shrink value.

Implementation

double get flexShrink => _flexShrink;
void flexShrink=(double value)
inherited

Change the _flexShrink field value. flexShrinkChanged will be invoked only if the field's value has changed.

Implementation

set flexShrink(double value) {
  if (_flexShrink == value) {
    return;
  }
  double from = _flexShrink;
  _flexShrink = value;
  if (hasValidated) {
    flexShrinkChanged(from, value);
  }
}