scrollable property

ScrollableState scrollable

Implementation

ScrollableState get scrollable => _scrollable;
void scrollable=(ScrollableState value)

Implementation

set scrollable(ScrollableState value) {
  if (value != _scrollable) {
    if (attached) {
      _scrollable.position.removeListener(markNeedsLayout);
    }
    _scrollable = value;
    if (attached) {
      _scrollable.position.addListener(markNeedsLayout);
    }
  }
}