notEquals method

Expr<bool> notEquals(
  1. Expr<String?> other
)

Compare this expression to other using <> in SQL.

Implementation

Expr<bool> notEquals(Expr<String?> other) => equals(other).not();