currentRowIndex property

int currentRowIndex

Returns the index of the first (topmost) row displayed currently displayed in PaginatedDataTable2. Throws if no table is attached to the controller

Implementation

int get currentRowIndex {
  _checkAttachedAndThrow();
  return _state!._firstRowIndex;
}