applicationName property
String
get
applicationName
Implementation
static String get applicationName {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getApplicationName',
);
return resultString['result'];
}
set
applicationName
(String name)
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);
}