custom method

AlgoliaQuery custom(
  1. String key,
  2. dynamic value
)

Custom Parameter

Adds a custom request parameter to the search query.

Implementation

AlgoliaQuery custom(String key, dynamic value) {
  assert(!_parameters.containsKey(key));
  return _copyWithParameters({key: value});
}