isHexadecimal function

bool isHexadecimal(
  1. String str
)

check if the string is hexadecimal

Implementation

bool isHexadecimal(String str) {
  return _hexadecimal.hasMatch(str);
}