search method
Implementation
List<UcumConcept> search(ConceptKind kind, String text, bool isRegex) {
assert(text.isNotEmpty,
paramError('search', 'text', 'must not be null or empty'));
return Search().doSearch(model, kind, text, isRegex);
}