deviceModel property
Returns the device model configured for the SDK.
Returns
- String: device model.
Implementation
static String get deviceModel {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getDeviceModel',
);
return resultString['result'];
}
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);
}