isHexadecimal function

bool isHexadecimal(
  1. String str
)

Returns true if str is a valid hexadecimal string.

Implementation

bool isHexadecimal(String str) => hexadecimalReg.hasMatch(str);