applicationName property

String get applicationName

Returns the configured application name.

Returns

  • String: the application name.

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);
}