search method

List<UcumConcept> search(
  1. ConceptKind kind,
  2. String text,
  3. bool isRegex
)

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