whereNotNull method

QueryBuilder<T> whereNotNull(
  1. String column
)

IS NOT NULL clause

Implementation

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