runSpacing property

int get runSpacing

Cells between adjacent runs.

Implementation

int get runSpacing => _runSpacing;
set runSpacing (int value)

Updates the run spacing.

Implementation

set runSpacing(int value) {
  _validatedGap(value, 'runSpacing');
  if (_runSpacing == value) return;
  _runSpacing = value;
  markNeedsLayout();
}