callForLoop function
Implementation
String callForLoop(List<dynamic> ll) {
String toReturn = "";
for (int i = 0; i < ll.length - 1; i++) {
String s = ll[i];
toReturn = toReturn + s + "\n";
}
toReturn = toReturn + ll[ll.length - 1];
return toReturn;
}