isHexadecimal function

bool isHexadecimal(
  1. String str
)

check if the string stris a hexadecimal number

Implementation

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