isIn method

Filter isIn(
  1. dynamic other
)

Convenience method for creating a CompareFilter which matches if this is in other.

If other is not an Expression, it will be wrapped into a ValueExpression.

Implementation

Filter isIn(dynamic other) =>
    CompareFilter(this, CompareType.isIn, Expression.dynamic(other));