add method
Implementation
void add(T value, {int weight = 1}) {
final key = normalize(value);
_counts.update(key, (c) => c + weight, ifAbsent: () => weight);
}
void add(T value, {int weight = 1}) {
final key = normalize(value);
_counts.update(key, (c) => c + weight, ifAbsent: () => weight);
}