whereNull method
IS NULL clause
Implementation
QueryBuilder<T> whereNull(String column) {
_wheres.add('${_formatColumn(column)} IS NULL');
return this;
}
IS NULL clause
QueryBuilder<T> whereNull(String column) {
_wheres.add('${_formatColumn(column)} IS NULL');
return this;
}