maxExtent property
The cross axis extent to apply to the sliver child.
This value must be nonnegative.
Implementation
double get maxExtent => _maxExtent;
Implementation
set maxExtent(double value) {
if (_maxExtent == value) {
return;
}
_maxExtent = value;
markNeedsLayout();
}