whereNull method

QueryBuilder<T> whereNull(
  1. String column
)

IS NULL clause

Implementation

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