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