minHeight property

double get minHeight

Height in pixels from the top of the bounding box at which the sheet starts to draw.

Implementation

double get minHeight =>
    math.min(fixedHeightOffset ?? _minHeight, availablePixels);
set minHeight (double value)

Height in pixels from the top of the bounding box at which the sheet starts to draw.

Implementation

set minHeight(double value) {
  if (heightModel == null) {
    _minHeight = value;
  }
}