String getNiceHexArray(List<int> bytes) { return '${bytes.map((i) => i.toRadixString(16).padLeft(2, '0')).join('')}'; }