selectAllRows method

void selectAllRows()

Select all VISIBLE rows (multi-row) — no-op in other modes.

Implementation

void selectAllRows() {
  if (selectionMode != ReadableSelectionMode.multiRow) return;
  _selRows
    ..clear()
    ..addAll(_viewMaster);
  notifyListeners();
}