in_ function

Builder in_(
  1. Builder value,
  2. Builder other
)

Returns the in operation of this and other.

this in other

Implementation

Builder in_(
  Builder value,
  Builder other,
) {
  return Row.binary(left: value, right: other, operator: 'in');
}