validateMobile function
Implementation
bool validateMobile(String value) {
String _pattern = r'(^(\+\d{1,3}[-\s]{1}?)?\d{10}$)';
RegExp _regExp = new RegExp(_pattern);
if (value.isEmpty) {
return false;
} else if (!_regExp.hasMatch(value)) {
return false;
}
return true;
}