spacing property

double? get spacing

The amount of space to place between children in the main axis

Implementation

double? get spacing => _spacing;
set spacing (double? value)

Implementation

set spacing(double? value) {
  if (_spacing == value) return;
  _spacing = value;
}