group property

String get group

The name of the currently active group.

Returns

  • The active group name (upper-case). Defaults to DEFAULT.

Also see:

Implementation

String get group {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SettingsService',
    'getGroup',
  );

  return resultString['result'];
}