void addNamed(String name, Iterable<String?> tokens) { for (final t in tokens) { if (t?.isNotEmpty == true) { add(FTSToken(t!, name: name)); } } }