deviceModel property

String get deviceModel

Get device model.

Returns

  • The device model

Implementation

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

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

Set device model.

Parameters

  • IN name The device model.

Implementation

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