isTel static method

bool isTel(
  1. String input
)

Return whether input matches regex of telephone number.

Implementation

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