Filter.query constructor

Filter.query(
  1. String key,
  2. String text
)

Matches values by performing text search with the specified value.

Implementation

factory Filter.query(String key, String text) =>
    Filter._(operator: FilterOperator.query, key: key, value: text);