like method

Expression like(
  1. String value
)

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

Implementation

Expression like(String value) {
  return _LikeExpression(this, _encodeValueForQuery(value));
}