equals method

Expression equals(
  1. Bit value
)
inherited

Creates an Expression checking if the value in the column equals the specified value.

Implementation

Expression equals(T value) {
  return _EqualsExpression(this, _encodeValueForQuery(value));
}