FluentTable constructor

FluentTable({
  1. List<FluentRow>? rows,
  2. List<double>? columnWidths,
  3. double? tableWidth,
})

Implementation

FluentTable({List<FluentRow>? rows, this.columnWidths, this.tableWidth})
  : _rows = rows ?? [],
    super(nanoid());