TableSelection constructor

TableSelection({
  1. required int maxRows,
  2. required int maxColumns,
  3. required List<double> rowOffsets,
  4. required List<double> columnOffsets,
})

Implementation

TableSelection({
  required this.maxRows,
  required this.maxColumns,
  required this.rowOffsets,
  required this.columnOffsets,
});