hasCellCallbacks method
Whether at least one cell interaction callback is configured for row and columnIndex.
Implementation
bool hasCellCallbacks(TreeRow row, int columnIndex) {
final cell = _cellColumnForDisplayColumnIndex(row, columnIndex);
return cell?.onTap != null || cell?.onDoubleTap != null || cell?.onSecondaryTap != null || cell?.onHover != null;
}