GrowthBookUserAttributes constructor

const GrowthBookUserAttributes({
  1. required String id,
  2. required String sessionId,
  3. required String deviceId,
  4. required String platform,
  5. String? apiBaseUrlHost,
  6. String? organizationUuid,
  7. String? accountUuid,
  8. String? userType,
  9. String? subscriptionType,
  10. String? rateLimitTier,
  11. int? firstTokenTime,
  12. String? email,
  13. String? appVersion,
})

Implementation

const GrowthBookUserAttributes({
  required this.id,
  required this.sessionId,
  required this.deviceId,
  required this.platform,
  this.apiBaseUrlHost,
  this.organizationUuid,
  this.accountUuid,
  this.userType,
  this.subscriptionType,
  this.rateLimitTier,
  this.firstTokenTime,
  this.email,
  this.appVersion,
});