bool isHex(String inputString) { if (!RegExp('[0-9A-Fa-f]{6}').hasMatch(inputString)) { return false; } return true; }