And - &&
Logical nodes
Condition
Value
Released in version:
1.0.0
Flutter/Dart link:

The "And - &&" node is a logical node used to denote a condition where two conditions are true. If one or both of them are false, the return value is false.
Check below the output table of this node:
Item1
Item2
Result
False
False
False
True
False
False
False
True
False
True
True
True
Inputs
Input Name
Canvas Required
Type
Description
item1
Bool
Condition 1 for the and operator
item2
Bool
Condition 2 for the and operator
Outputs
Output Name
Canvas Required
Type
Description
result
Bool
Result from applying the and operator to "item1" and "item2" inputs
Last updated