TablePrinter.columns constructor
Convenience constructor for creating a table with aligned columns and no header. By default the columns are separated by a single space.
Implementation
TablePrinter.columns({
required final Iterable<List<String?>> rows,
final String? columnSeparator,
}) : this(
rows: rows,
columnSeparator: columnSeparator ?? ' ',
);