evaluate method

  1. @override
bool evaluate(
  1. T? other
)
override

Evaluates this QueryFieldOperator against other, where other is a field on the model.

Implementation

@override
bool evaluate(T? other) {
  return other != value;
}