selectedRow method
Implementation
CatalogRow? selectedRow(List<CatalogRow> rows) {
final key = _selectedKey;
if (key == null) {
return null;
}
for (final row in rows) {
if (row.keyPath == key) {
return row;
}
}
return null;
}