ConsoleTable constructor

ConsoleTable({
  1. required List<String> headers,
  2. required List<List<String>> rows,
})

Creates a ConsoleTable with the given headers and rows.

Implementation

ConsoleTable({required this.headers, required this.rows});