multisty function
Implementation
String multisty(final List<List<String>> data, {bool printCharCodes = false}) {
List<String> temp = ['$reset\n'];
for (List<String> style in data) {
temp.add(sty(style));
temp.add(newline);
}
temp.add(reset + newline);
return temp.join();
}