isTel static method

bool isTel(
  1. String? tel
)

是否电话号码

Implementation

static bool isTel(String? tel) {
  return matches(regexTel, tel);
}