isURL static method

bool isURL(
  1. String? url
)

是否url地址

Implementation

static bool isURL(String? url) {
  return matches(regexUrl, url);
}