Tabler constructor

Tabler({
  1. List<List>? data,
  2. List? header,
  3. TablerStyle? style,
})

Creates a table.

Implementation

Tabler({
  List<List<dynamic>>? data,
  List<dynamic>? header,
  TablerStyle? style,
}) : this._(data ?? [], header ?? [], style ?? TablerStyle());