whereILike method

QueryBuilder<T> whereILike(
  1. String column,
  2. String pattern
)

ILIKE clause (PostgreSQL case-insensitive)

Implementation

QueryBuilder<T> whereILike(String column, String pattern) {
  _wheres.add('${_formatColumn(column)} ILIKE @${column}_pattern');
  _params['${column}_pattern'] = pattern;
  return this;
}