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