matches method

bool matches(
  1. String pattern
)

Check if this channel matches a pattern

Implementation

bool matches(String pattern) {
  return Grammar.channelMatches(name, pattern);
}