deviceModel property
String
get
deviceModel
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);
}