isHexadecimal function
check if the string input
is a hexadecimal number
Implementation
bool isHexadecimal(String input) {
return _regExp.hasMatch(input);
}
check if the string input
is a hexadecimal number
bool isHexadecimal(String input) {
return _regExp.hasMatch(input);
}