validateChannelHandle static method
Returns true if the given ChannelHandle is a valid ChannelHandle.
Implementation
static bool validateChannelHandle(String name) {
if (name.isNullOrWhiteSpace) {
return false;
}
return _handleExp.hasMatch(name);
}