handleCellTap method

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

Emits a public cell tap callback.

Implementation

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