hasRowCallbacks method

bool hasRowCallbacks(
  1. TreeRow row
)

Whether at least one row interaction callback is configured for row.

Implementation

bool hasRowCallbacks(TreeRow row) {
  final node = row.sourceNode;
  return node?.onTap != null || node?.onDoubleTap != null || node?.onSecondaryTap != null;
}