getCleanInputs method

List<VSInputData> getCleanInputs()

The inputs of this VSListNode without VSInputData that have no connectedInterface

Implementation

List<VSInputData> getCleanInputs() {
  return inputData
      .where(
        (element) => element.connectedInterface != null,
      )
      .toList();
}