setMaxValuesPerFacet method

AlgoliaSettings setMaxValuesPerFacet(
  1. int value
)

MaxValuesPerFacet (Faceting)

TODO: documentation to be added

Source: Learn more

Implementation

AlgoliaSettings setMaxValuesPerFacet(int value) {
  assert(!_parameters.containsKey('maxValuesPerFacet'));
  return _copyWithParameters(<String, dynamic>{'maxValuesPerFacet': value});
}