isWsUrl function

bool isWsUrl(
  1. String url
)

Implementation

bool isWsUrl(String url) {
  return matchRegexProtocol(url, WS_REGEX);
}