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