isUsingControllers function

bool isUsingControllers(
  1. CNode node
)

Implementation

bool isUsingControllers(CNode node) {
  final values = node.getAttributes.values;
  if (values.any((e) =>
      e is VariableTypeInput ||
      e is CombinatedTextTypeInput ||
      e is FCondition)) {
    return true;
  }
  return false;
}