ascii static method

Table ascii(
  1. List<String> headers,
  2. List<List<Object?>> rows
)

Creates an ASCII-compatible table.

Implementation

static Table ascii(List<String> headers, List<List<Object?>> rows) {
  return Table()
    ..headers(headers)
    ..rows(rows)
    ..border(style_border.Border.ascii);
}