whereNull method

DBHelper whereNull(
  1. String column
)

Add a WHERE NULL condition

Implementation

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