Filter.autoComplete constructor

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

Matches values with the specified prefix.

Implementation

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