flexGrow property

double flexGrow
inherited

Flex grow value.

Implementation

double get flexGrow => _flexGrow;
void flexGrow=(double value)
inherited

Change the _flexGrow field value. flexGrowChanged will be invoked only if the field's value has changed.

Implementation

set flexGrow(double value) {
  if (_flexGrow == value) {
    return;
  }
  double from = _flexGrow;
  _flexGrow = value;
  if (hasValidated) {
    flexGrowChanged(from, value);
  }
}