isValidHexData static method
Implementation
static bool isValidHexData(String data) {
if (!data.startsWith('0x')) return false;
if (data.length % 2 != 0) return false;
try {
HexUtils.hexToBytes(data);
return true;
} catch (e) {
return false;
}
}