hasCellCallbacks method

bool hasCellCallbacks(
  1. TreeRow row,
  2. int columnIndex
)

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;
}