DeviceInfo constructor

DeviceInfo({
  1. String? brand,
  2. String? browser,
  3. String? browserVersion,
  4. String? category,
  5. String? ipAddress,
  6. String? languageCode,
  7. String? model,
  8. String? operatingSystem,
  9. String? operatingSystemVersion,
  10. int? screenHeight,
  11. int? screenWidth,
  12. String? userAgent,
})

Implementation

DeviceInfo({
  this.brand,
  this.browser,
  this.browserVersion,
  this.category,
  this.ipAddress,
  this.languageCode,
  this.model,
  this.operatingSystem,
  this.operatingSystemVersion,
  this.screenHeight,
  this.screenWidth,
  this.userAgent,
});