handleCellHover method

void handleCellHover(
  1. TreeRow row,
  2. int columnIndex
)

Emits a public cell hover callback.

Implementation

void handleCellHover(TreeRow row, int columnIndex) {
  _cellColumnForDisplayColumnIndex(row, columnIndex)?.onHover?.call(_cellEventFor(row, columnIndex));
}