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) {
  if (other == null) {
    return false;
  }
  return other.compareTo(value) > 0;
}