maxExtent property

double maxExtent

The cross axis extent to apply to the sliver child.

This value must be nonnegative.

Implementation

double get maxExtent => _maxExtent;
void maxExtent=(double value)

Implementation

set maxExtent(double value) {
  if (_maxExtent == value) {
    return;
  }
  _maxExtent = value;
  markNeedsLayout();
}