visibleRange property

(int, int)? get visibleRange

Returns the range of items indices currently visible in the viewport.

Implementation

(int, int)? get visibleRange {
  assert(_delegate != null, "ListController is not attached.");
  return _delegate!.visibleRange;
}