String int2RadixString_16(List<int> list) { String str = ''; for (int i in list) { str = str + i.toRadixString(16); } return str; }