isWebUrl function

bool isWebUrl(
  1. String url
)

Implementation

bool isWebUrl(String url) {
  return isHttpUrl(url) || isHttpsUrl(url);
}