isNull<ValType> static method

Cond<ValType> isNull<ValType>(
  1. Field<ValType> field
)

DSL to create 'IS NULL' relational condition

Implementation

static Cond<ValType> isNull<ValType>(Field<ValType> field) =>
    Cond<ValType>(field, Op.Is, null);