selectedRow method

CatalogRow? selectedRow(
  1. List<CatalogRow> rows
)

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;
}