scrollExtentMax property
Indicates the maximum in-range value for scrollPosition if the node is scrollable.
This value may be infinity if the scroll is unbound.
See also:
- ScrollPosition.maxScrollExtent, from where this value is usually taken.
Implementation
double get scrollExtentMax => _scrollExtentMax;
Implementation
set scrollExtentMax(double value) {
assert(value != null);
_scrollExtentMax = value;
_hasBeenAnnotated = true;
}