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