gte function

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

Matches if the field is greater than or equal to the given value.

Implementation

FilterExpr gte(String field, dynamic value) {
  return FilterGte(field, value);
}