static String? phoneValidator(String? value) { return customRegexValidator(value, r'^\d{10}$', 'Invalid phone number'); }