whereNotNull method

ModelQuery<T> whereNotNull(
  1. String column
)

Adds a WHERE column IS NOT NULL clause.

Implementation

ModelQuery<T> whereNotNull(String column) {
  _builder.whereNotNull(column);
  return this;
}