isMobileExact static method

bool isMobileExact(
  1. String input
)

Returns whether the input matches the exact mobile number regex.

Implementation

static bool isMobileExact(String input) {
  return matches(regexMobileExact, input);
}