ascii2Str function

String ascii2Str(
  1. List<int> asciiList
)

Implementation

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

  return str;
}