whereLike method

DBHelper whereLike(
  1. String column,
  2. String pattern
)

Add a WHERE LIKE condition

Implementation

DBHelper whereLike(String column, String pattern) {
  _whereConditions.add("$column LIKE ?");
  _bindings.add(pattern);
  return this;
}