deviceModel property

String get deviceModel

Returns the device model configured for the SDK.

Returns

Implementation

static String get deviceModel {
  final OperationResult resultString = staticMethod(
    'SdkSettings',
    'getDeviceModel',
  );

  return resultString['result'];
}
set deviceModel (String model)

Sets the device model string reported to the SDK.

Parameters

  • model: the device model string.

Implementation

static set deviceModel(String model) {
  staticMethod('SdkSettings', 'setDeviceModel', args: model);
}