matchesInteractiveWidget method

bool matchesInteractiveWidget(
  1. Element element
)

Implementation

bool matchesInteractiveWidget(Element element) {
  return _matchesStandardFlutterInteractiveWidget(element) ||
      (isInteractiveWidget?.call(element) ?? false);
}