gapHeight property

double gapHeight
inherited

How large should the gaps between items in a grid or flex container be?

Implementation

double get gapHeight => _gapHeight;
void gapHeight=(double value)
inherited

Change the _gapHeight field value. gapHeightChanged will be invoked only if the field's value has changed.

Implementation

set gapHeight(double value) {
  if (_gapHeight == value) {
    return;
  }
  double from = _gapHeight;
  _gapHeight = value;
  if (hasValidated) {
    gapHeightChanged(from, value);
  }
}