phoneValidator static method
Implementation
static String? phoneValidator(
String? value, {
bool isRequired = true,
String field = "Phone Number",
RegExp? phoneRegex,
}) => FormValidator.phoneValidator(
value,
isRequired: isRequired,
field: field,
phoneRegex: phoneRegex,
);