isHex function

bool isHex(
  1. String hex
)

Implementation

bool isHex(String hex) => _hexRegExp.hasMatch(hex);