Channel constructor

Channel(
  1. String name
)

Implementation

Channel(this.name)
    : isPattern = Grammar.isValidChannelPattern(name),
      isMeta = name.startsWith('/meta/'),
      isService = name.startsWith('/service/'),
      isWildcard = name.endsWith('/**');