rowByKey method

CatalogRow? rowByKey(
  1. String keyPath
)

Implementation

CatalogRow? rowByKey(String keyPath) {
  for (final row in _rows) {
    if (row.keyPath == keyPath) {
      return row;
    }
  }
  return null;
}