whereNull method

ModelQuery<T> whereNull(
  1. String column
)

Adds a WHERE column IS NULL clause.

Implementation

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