String ascii2Str(List<int> asciiList) { String str = ''; for (int i in asciiList) { str = str + String.fromCharCode(i); } return str; }