matchesUnit method

bool matchesUnit(
  1. UcumUnit unit,
  2. String text,
  3. bool isRegex
)

Implementation

bool matchesUnit(UcumUnit unit, String text, bool isRegex) {
  return matches(unit.property, text, isRegex) ||
      matchesUcumConcept(unit, text, isRegex);
}