LegacyTable constructor

const LegacyTable({
  1. Key? id,
  2. required List<String> columns,
  3. required List<List<String>> rows,
  4. required LegacyTableState state,
  5. List<int>? widths,
})

Implementation

const LegacyTable({
  Key? id,
  required this.columns,
  required this.rows,
  required this.state,
  this.widths,
}) : _id = id;