GreaterOperator<T extends Object> constructor

const GreaterOperator<T extends Object>(
  1. FilterField<T> field,
  2. Object? value
)

Creates a greater-than filter for the specified field and value.

Implementation

const GreaterOperator(super.field, super.value)
    : super._(operator: FilterOperator.greater);