handleCellDoubleTap method

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

Emits a public cell double-tap callback.

Implementation

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