deviceName property
Returns the configured device name.
Returns
- String: device name.
Implementation
static String get deviceName {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getDeviceName',
);
return resultString['result'];
}
Sets the device name reported to the SDK.
Parameters
name: the device name string.
Implementation
static set deviceName(String name) {
staticMethod('SdkSettings', 'setDeviceName', args: name);
}