toggleCurrent method

bool toggleCurrent()

Toggles the current dataset record selection state.

Returns the new selection value.

Implementation

bool toggleCurrent() {
  _ensureCurrentRecordForSelection();
  return toggleAt(_dataSet._cursorCoordinator.currentIndex);
}