sticky property

bool sticky

Implementation

bool get sticky => _sticky;
void sticky=(bool value)

Implementation

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