scrollableSize property

Size get scrollableSize

Implementation

Size get scrollableSize => _maxScrollableSize;
set scrollableSize (Size value)

Implementation

set scrollableSize(Size value) {
  assert(value.isFinite);
  if (_maxScrollableSize != value) {
    _maxScrollableSize = value;
  } else {
    _maxScrollableSize = value;
  }
}