isHttpUrl function

bool isHttpUrl(
  1. String url
)

Implementation

bool isHttpUrl(String url) {
  return matchRegexProtocol(url, HTTP_REGEX);
}