reset method

void reset(
  1. int rowCount,
  2. int columnCount
)

Implementation

void reset(int rowCount, int columnCount) {
  this.rowCount = rowCount;
  this.columnCount = columnCount;
  rowMaxHeights = {};
  occupiedTable = {};
  fixedBodyCellWidgets = [];
  scrollableBodyCellWidgets = [];
}