atEnd property

bool get atEnd

Whether the scoreboard is at its end scroll state.

Implementation

bool get atEnd => _clientSize != null
    ? _transform.abs() + _clientSize! >= _scrollSize!
    : false;