Creates an ASCII-compatible table.
static Table ascii(List<String> headers, List<List<Object?>> rows) { return Table() ..headers(headers) ..rows(rows) ..border(style_border.Border.ascii); }