toUniqueTerms method

Set<String> toUniqueTerms()

Returns a set of all the unique terms contained in the Keyword collection.

Implementation

Set<String> toUniqueTerms() {
  final retVal = <String>{};
  for (final e in this) {
    retVal.addAll(e);
  }
  return retVal;
}