currentScrollSize property

int get currentScrollSize

The current size of the scrollbar.

Depends upon orientation of scrollbar.

Implementation

int get currentScrollSize =>
    _isVertical ? _element.scrollHeight : _element.scrollWidth;