If non-null, force the child's width to be a multiple of this value.
Source
double get stepWidth => _stepWidth;
Source
set stepWidth(double newStepWidth) {
if (newStepWidth == _stepWidth)
return;
_stepWidth = newStepWidth;
markNeedsLayout();
}