ExperimentUser constructor

const ExperimentUser({
  1. String? deviceId,
  2. String? userId,
  3. String? country,
  4. String? city,
  5. String? region,
  6. String? dma,
  7. String? language,
  8. String? platform,
  9. String? version,
  10. String? os,
  11. String? deviceModel,
  12. String? deviceBrand,
  13. String? deviceManufacturer,
  14. String? carrier,
  15. String? library,
  16. String? ipAddress,
  17. Map<String, Object?>? userProperties,
  18. Map<String, List<String>>? groups,
  19. Map<String, Map<String, Map<String, Object?>>>? groupProperties,
})

Creates an ExperimentUser with the given fields.

Implementation

const ExperimentUser({
  this.deviceId,
  this.userId,
  this.country,
  this.city,
  this.region,
  this.dma,
  this.language,
  this.platform,
  this.version,
  this.os,
  this.deviceModel,
  this.deviceBrand,
  this.deviceManufacturer,
  this.carrier,
  this.library,
  this.ipAddress,
  this.userProperties,
  this.groups,
  this.groupProperties,
});