applicationName property
Returns the configured application name.
Returns
- String: the application name.
Implementation
static String get applicationName {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getApplicationName',
);
return resultString['result'];
}
Sets the application name exposed to the SDK.
Parameters
name: the application name string.
Implementation
static set applicationName(String name) {
staticMethod('SdkSettings', 'setApplicationName', args: name);
}