registerGroup method

void registerGroup(
  1. String name,
  2. List<String> paths
)

Register a Group

Associate a name with a list of paths.

Implementation

void registerGroup(String name, List<String> paths) {
  _groups[name] = paths;
}