isNull property
Cond<ValType>
get
isNull
Returns an "IS" condition, i.e. 'where var IS null'
FindStatement find = FindStatement();
Field<String> phone = Field<String>('phone');
find.where(phone.iss(null));
Implementation
Cond<ValType> get isNull => Cond.isNull<ValType>(this);