whereNull method

QueryBuilder whereNull(
  1. String column
)

Adds a WHERE column IS NULL clause.

Implementation

QueryBuilder whereNull(String column) {
  final prefix = _wheres.isEmpty ? '' : 'AND ';
  _wheres.add('$prefix${_quoteIdentifier(column)} IS NULL');
  return this;
}