isScrollOutside property
bool
get
isScrollOutside
Indicates whether the widget relies on a parent scrollable widget.
If no ScrollController is assigned, it is assumed that the widget is already inside a scrollable parent widget.
Implementation
bool get isScrollOutside {
return _scrollController == null;
}