group property
Get the name of the current group
Returns
- The name of the current group. The default group name is "DEFAULT"
Throws
- An exception if it fails
Implementation
String get group {
final OperationResult resultString = objectMethod(
_pointerId,
'SettingsService',
'getGroup',
);
return resultString['result'];
}