totalExtent property

int get totalExtent

The total content length in cells/lines.

Implementation

int get totalExtent => _totalExtent;
set totalExtent (int value)

Implementation

set totalExtent(int value) {
  if (_totalExtent != value) {
    _totalExtent = value;
    scrollOffset = _scrollOffset; // trigger clamping
    notifyListeners();
  }
}