isURL method

bool isURL()

判断是否为Url

Implementation

bool isURL() {
  if (this == null) {
    return false;
  }
  return RegexUtil.isURL(this!);
}