Converts Unit8List into Hex
String bytesToHex(Uint8List input) { String result = hex.encode(input); return result; }