Subject constructor

const Subject({
  1. String? userId,
  2. int? viewportWidth,
  3. int? viewportHeight,
  4. int? screenResolutionWidth,
  5. int? screenResolutionHeight,
  6. int? colorDepth,
  7. String? timezone,
  8. String? language,
  9. String? ipAddress,
  10. String? userAgent,
  11. String? networkUserId,
  12. String? domainUserId,
})

Creates a Subject

Implementation

const Subject({
  this.userId,
  this.viewportWidth,
  this.viewportHeight,
  this.screenResolutionWidth,
  this.screenResolutionHeight,
  this.colorDepth,
  this.timezone,
  this.language,
  this.ipAddress,
  this.userAgent,
  this.networkUserId,
  this.domainUserId,
});