WebBrowserRegistration constructor

WebBrowserRegistration({
  1. String? deviceId,
  2. String? deviceDisplayName,
  3. DateTime? registrationCreatedOn,
  4. String? browserName,
  5. int? deviceMemory,
  6. String? language,
  7. String? vendor,
  8. int? maxTouchPoints,
  9. int? hardwareConcurrency,
})

Implementation

WebBrowserRegistration({
  super.deviceId,
  super.deviceDisplayName,
  super.registrationCreatedOn,
  this.browserName,
  this.deviceMemory,
  this.language,
  this.vendor,
  this.maxTouchPoints,
  this.hardwareConcurrency,
});