isTel static method

bool isTel(
  1. String input
)

Returns whether the input matches the telephone number regex.

Implementation

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