markCellsDirty method

  1. @protected
void markCellsDirty(
  1. TableCellRange cells
)

Marks specific cells as needing to rebuild.

See also:

  • markNeedsBuild, which marks the whole table view as needing to rebuild.

Implementation

@protected
void markCellsDirty(TableCellRange cells) {
  _dirtyCells ??= UnionTableCellRange();
  _dirtyCells!.add(cells);
  markNeedsLayout();
}