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('${style.join()}$reset');
}
temp.add(reset + newline);
return temp.join();
}