gte function
Matches if the field is greater than or equal to the given value.
Implementation
FilterExpr gte(String field, dynamic value) {
return FilterGte(field, value);
}
Matches if the field is greater than or equal to the given value.
FilterExpr gte(String field, dynamic value) {
return FilterGte(field, value);
}