whereNull method
Adds a WHERE column IS NULL clause.
Implementation
ModelQuery<T> whereNull(String column) {
_builder.whereNull(column);
return this;
}
Adds a WHERE column IS NULL clause.
ModelQuery<T> whereNull(String column) {
_builder.whereNull(column);
return this;
}