toHex method

String toHex()

Implementation

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