multisty function

String multisty(
  1. List<List<String>> data, {
  2. bool printCharCodes = false,
})

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();
}