sticky property
bool
get
sticky
Implementation
bool get sticky => _sticky;
set
sticky
(bool value)
Implementation
set sticky(bool value) {
if (_sticky == value) {
return;
}
_sticky = value;
markNeedsLayout();
if (attached && !_sticky) {
_scrollable.widget.controller?.removeListener(markNeedsLayout);
}
}