whereNotNull method

QueryBuilder whereNotNull(
  1. String column
)

Adds a WHERE column IS NOT NULL clause.

Implementation

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