tabular library

Classes

Sort
Describes the rules by which an individual column should be sorted.

Enums

Border
Side
Sets the cell alignment. In the case of horizontal alignment, Side.start means left, Side.end means right.
Style
The border style.

Functions

tabular(List<List> rows, {Map<dynamic, Side>? align, Map<dynamic, FormatCell>? format, List<Sort>? sort, dynamic markdownAlign = false, Border border = Border.none, Style style = Style.markdown, List<int>? rowDividers = const [1], dynamic outerBorder = false}) String
Converts a set of cells defined by a two-dimensional list to a Markdown formatted ASCII table. Returns a string with the table that is ready for printing.

Typedefs

CompareCells = int Function(dynamic a, dynamic b)
FormatCell = String Function(dynamic value)
Specifies how to convert the source value of the cell to a String.