ge function

SimpleFilter ge(
  1. String fieldPath,
  2. Object value
)

Creates a field filter with the >= operator.

Implementation

SimpleFilter ge(String fieldPath, Object value) =>
    _filter(fieldPath, Filter_Operator.GREATER_OR_EQUAL, value);