isTel method

bool isTel()

判断是否为座机号码

Implementation

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