isScrollable property
bool
get
isScrollable
Whether the scoreboard is in a scrollable state.
Scoreboard is considered scrollable if the client size is less than the scroll size.
Implementation
bool get isScrollable =>
_clientSize != null && _scrollSize != null && _clientSize! < _scrollSize!;