group property
String
get
group
The name of the currently active group.
Returns
- The active group name (upper-case). Defaults to
DEFAULT.
Also see:
- beginGroup: to start a new group.
- endGroup: to end the current group.
Implementation
String get group {
final OperationResult resultString = objectMethod(
pointerId,
'SettingsService',
'getGroup',
);
return resultString['result'];
}