whereNull method

Query<T> whereNull(
  1. String column
)

---------- WHERE NULL ----------

Implementation

Query<T> whereNull(String column) {
  base.addWhere('$column IS NULL');
  return this;
}