resetSort method

void resetSort()

Reset sort to original order

Implementation

void resetSort() {
  _state = _state.copyWith(
    sortField: null,
    visibleRows: [..._state.totalRows, ..._state.regularRows],
  );
  notifyListeners();
}