clearRow method

void clearRow()

Clears the row selection only.

Implementation

void clearRow() {
  if (_selectedRowKey == null) return;
  _selectedRowKey = null;
  notifyListeners();
}