isIP method

bool isIP()

判断是否为IP

Implementation

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