KGramsMap typedef Null safety

KGramsMap = Map<String, Set<String>>

Alias for Map<String, Set<String>>.

A hashmap of k-Gram to Set, where the value is the set of unique terms that contain the k-Gram in the key.

Implementation

typedef KGramsMap = Map<String, Set<String>>;