Encodes buffer of list of integers bytes to hexa-decimal.
bytes
String encodeHex(List<int> bytes) { try { return hex.encode(bytes); } catch (_) { throw HexException('$bytes'); } }