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

Throws

  • An exception if it fails

Implementation

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

  flush();
}