deviceAttributes property

JSEnterpriseDeviceAttributes get deviceAttributes

Use the chrome.enterprise.deviceAttributes API to read device attributes. Note: This API is only available to extensions force-installed by enterprise policy.

Implementation

JSEnterpriseDeviceAttributes get deviceAttributes {
  var deviceAttributesNullable = this.deviceAttributesNullable;
  if (deviceAttributesNullable == null) {
    throw ApiNotAvailableException('chrome.enterprise.deviceAttributes');
  }
  return deviceAttributesNullable;
}