array2List function
Implementation
List<int> array2List(Array<Int8> array, int length) {
List<int> lstNew = [];
for (int i = 0; i < length; i ++) {
if (array[i] <= 0 || array[i] > 127) {
break;
}
lstNew.add(array[i]);
}
return lstNew;
}