spacing property

int get spacing

The fixed whole-cell gap between adjacent children.

Implementation

int get spacing => _spacing;
set spacing (int value)

Implementation

set spacing(int value) {
  _validatedSpacing(value);
  if (_spacing == value) return;
  _spacing = value;
  markNeedsLayout();
}