getVisibleInGroup method

Set<String> getVisibleInGroup(
  1. PaletteGroup group
)

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();
}