String uint8ListToHexString(Uint8List input) { return input.map((e) => e.toRadixString(16).padLeft(2, '0')).join(); }