setHighlightPostTag method

AlgoliaSettings setHighlightPostTag(
  1. String value
)

HighlightPostTag

The HTML string to insert after the highlighted parts in all highlight and snippet results

Usage notes:

  • highlightPostTag needs to be used along with highlightPreTag.

Source: Learn more

Implementation

AlgoliaSettings setHighlightPostTag(String value) {
  assert(value.isNotEmpty);
  assert(!_parameters.containsKey('highlightPostTag'));
  return _copyWithParameters(<String, dynamic>{'highlightPostTag': value});
}