beginGroup method

void beginGroup(
  1. String groupName
)

Start a group with the specified name

The default group name is "DEFAULT". Does not allow nested groups.

Parameters

  • IN groupName The name of the group

Implementation

void beginGroup(String groupName) {
  objectMethod(pointerId, 'SettingsService', 'beginGroup', args: groupName);

  flush();
}