negated method Null safety

ExpressionInterface negated(
  1. ExpressionInterface expression
)

Creates an expression negating the given expression.

Implementation

static ExpressionInterface negated(ExpressionInterface expression) =>
    UnaryExpression('NOT', expression);