Convert bytes to hex string
String bytesToHex(Iterable<int> bytes) { return bytes.map((b) => b.toRadixString(16).padLeft(2, '0')).join(); }