getGroupsWhereSelectedAll method

Set<String> getGroupsWhereSelectedAll()

Return groupName(s) where all options on that group are selected. Based on isGroupSelectedAll.

Implementation

Set<String> getGroupsWhereSelectedAll() {
  Set<String> distinctGroupName = Set.from(_groups.values);
  return distinctGroupName.where((gn) => isGroupSelectedAll(gn)).toSet();
}