whereNotNull method

Query<T> whereNotNull(
  1. String column
)

---------- WHERE NOT NULL ----------

Implementation

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