Attributes constructor

const Attributes({
  1. required String location,
  2. String? referrer,
  3. String? source,
  4. String? language,
  5. double? screenWidth,
  6. double? screenHeight,
  7. int? screenColorDepth,
  8. String? deviceName,
  9. String? deviceManufacturer,
  10. String? osName,
  11. String? osVersion,
  12. String? browserName,
  13. String? browserVersion,
  14. double? browserWidth,
  15. double? browserHeight,
})

Implementation

const Attributes({
  required this.location,
  this.referrer,
  this.source,
  //
  this.language,
  this.screenWidth,
  this.screenHeight,
  this.screenColorDepth,
  this.deviceName,
  this.deviceManufacturer,
  this.osName,
  this.osVersion,
  this.browserName,
  this.browserVersion,
  this.browserWidth,
  this.browserHeight,
});