Returns a set of all the unique terms contained in the Keyword collection.
Set<String> toUniqueTerms() { final retVal = <String>{}; for (final e in this) { retVal.addAll(e); } return retVal; }