static bool ixHexaDecimalNumber(String v) { final RegExp hexaDecimalRegex = RegExp(r'^(0x|0X)?[0-9A-Fa-f]+$'); return hexaDecimalRegex.hasMatch(v); }