isPhoneMatch function

bool isPhoneMatch(
  1. String value
)

Implementation

bool isPhoneMatch(String value) {
  return RegExp(regexPhone).hasMatch(value);
}