isNull method
Check if this expression is NULL.
This is equivalent to this IS NULL in SQL.
Important
This method only returns true if this is an SQL NULL, meaning:
toExpr(null as JsonValue?).isNull()evaluates totrue, and,toExpr(JsonValue(null) as JsonValue?).isNull()evaluates tofalse.
Implementation
Expr<bool> isNull() =>
ExpressionIsNotDistinctFrom<JsonValue>(this, Expr.null$);