insertGroup method

void insertGroup(
  1. PolicyGroup group
)

Adds the given group to the _groups of this entry.

If PolicyGroup._name is already a key in _groups, the old group gets overwritten.

Implementation

void insertGroup(PolicyGroup group) {
  _groups[group.name] = group;
}