canRun method

bool canRun(
  1. String tag
)

Implementation

bool canRun(String tag) {
  if (run == null) return true;
  for (final r in run!) {
    if (_matchesTag(r, tag)) return true;
  }
  return false;
}