whereNull method

QueryBuilder whereNull(
  1. String field
)

WHERE NULL clause

Implementation

QueryBuilder whereNull(String field) {
  _wheres.add('$field IS NULL');
  return this;
}