static String addCommentLineList(List lines) { String line = ''; for (var item in lines) { line += addLine(item.toString()); } return line; }