matchesChannel method

bool matchesChannel(
  1. String pattern
)

Check if this channel matches a pattern

Implementation

bool matchesChannel(String pattern) {
  return Grammar.channelMatches(this, pattern);
}