DeviceInfo constructor

const DeviceInfo({
  1. String? deviceId,
  2. String? label,
  3. String? platform,
  4. String? os,
  5. String? osVersion,
  6. String? browser,
  7. String? browserVersion,
  8. String? appVersion,
  9. String? appBuild,
  10. String? model,
  11. String? manufacturer,
  12. String? locale,
  13. String? timezone,
  14. int? screenWidth,
  15. int? screenHeight,
  16. double? devicePixelRatio,
  17. String? userAgent,
})

Implementation

const DeviceInfo({
  this.deviceId,
  this.label,
  this.platform,
  this.os,
  this.osVersion,
  this.browser,
  this.browserVersion,
  this.appVersion,
  this.appBuild,
  this.model,
  this.manufacturer,
  this.locale,
  this.timezone,
  this.screenWidth,
  this.screenHeight,
  this.devicePixelRatio,
  this.userAgent,
});