stepHeight property

double stepHeight

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

Implementation

double get stepHeight => _stepHeight;
void stepHeight= (double value)

Implementation

set stepHeight(double value) {
  if (value == _stepHeight)
    return;
  _stepHeight = value;
  markNeedsLayout();
}