deviceName property

String get deviceName

Get device name.

Returns

  • The device name

Implementation

static String get deviceName {
  final OperationResult resultString = staticMethod(
    'SdkSettings',
    'getDeviceName',
  );

  return resultString['result'];
}
set deviceName (String name)

Set device name.

Parameters

  • IN name The device name.

Implementation

static set deviceName(String name) {
  staticMethod( 'SdkSettings', 'setDeviceName', args: name);
}