Display data in a formatted table
void table(List<String> headers, List<List<String>> rows) { final consoleTable = ConsoleTable(headers: headers, rows: rows); consoleTable.render(); }