getVisibleInGroup method
Get all visible palettes in a specific exclusive group.
Implementation
Set<String> getVisibleInGroup(PaletteGroup group) {
return _visiblePalettes.values
.where((p) => p.group == group)
.map((p) => p.id)
.toSet();
}