ilike method

Expression ilike(
  1. String value
)

Creates an Expression checking if the value in the column is LIKE the specified value but ignoring case. See Postgresql docs for more info on the ILIKE operator.

Implementation

Expression ilike(String value) {
  return _ILikeExpression(this, _encodeValueForQuery(value));
}