openRow method

void openRow(
  1. String keyPath
)

Implementation

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