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