openRow method
Implementation
void openRow(String keyPath) {
if (_selectedKey == keyPath) {
if (!_selectionExplicit) {
_selectionExplicit = true;
notifyListeners();
}
return;
}
_selectedKey = keyPath;
_selectionExplicit = true;
notifyListeners();
}