spacing property

int get spacing

Cells between adjacent children in a run.

Implementation

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

Updates the child spacing.

Implementation

set spacing(int value) {
  _validatedGap(value, 'spacing');
  if (_spacing == value) return;
  _spacing = value;
  markNeedsLayout();
}