whereNotNull method

DBHelper whereNotNull(
  1. String column
)

Add a WHERE NOT NULL condition

Implementation

DBHelper whereNotNull(String column) {
  _whereConditions.add("$column IS NOT NULL");
  return this;
}