gt function

FilterExpr gt(
  1. String field,
  2. dynamic value
)

Matches if the field is greater than the given value.

Implementation

FilterExpr gt(String field, dynamic value) {
  return FilterGt(field, value);
}