Different - !=

Logical nodes

ConditionValue

Released in version:

1.0.0

Flutter/Dart link:

The "Different !=" node is a logical node where we look for the result of knowing if both conditions are different. If they are the same, false is returned, if they are the same, true is returned.

The different node has multiple variations depending on the type as shown in the table below:

TypeNode

Bool

Different - != - Bool

Color

Different - != - Color

DateTime

Different - != - DateTime

Double

Different - != - Double

Int

Different - != - Int

String

Different - != - String

Inputs

Input NameCanvas RequiredTypeDescription

item1

Depends on the node

Condition 1

item2

Depends on the node

Condition 2

Outputs

Output NameCanvas RequiredTypeDescription

result

Bool

Result from applying the != operator to "item1" and "item2" inputs

Last updated