knownTags property

Set<String> knownTags
latefinal

The set of tags that have been declared in any way in this configuration.

Implementation

late final Set<String> knownTags = UnmodifiableSetView({
  ...includeTags.variables,
  ...excludeTags.variables,
  ...suiteDefaults.knownTags,
  for (var configuration in presets.values) ...configuration.knownTags
});