toHex method
Implementation
String toHex() {
return map(
(byte) => '0x${(byte.toRadixString(16).padLeft(2, '0')).toUpperCase()}',
).join(',');
}
String toHex() {
return map(
(byte) => '0x${(byte.toRadixString(16).padLeft(2, '0')).toUpperCase()}',
).join(',');
}