stepWidth property

double stepWidth

If non-null, force the child's width to be a multiple of this value.

Implementation

double get stepWidth => _stepWidth;
void stepWidth= (double value)

Implementation

set stepWidth(double value) {
  if (value == _stepWidth)
    return;
  _stepWidth = value;
  markNeedsLayout();
}