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