GrowthBookExperimentData constructor

const GrowthBookExperimentData({
  1. required String experimentId,
  2. required int variationId,
  3. GrowthBookUserAttributes? userAttributes,
  4. Map<String, Object?>? experimentMetadata,
})

Implementation

const GrowthBookExperimentData({
  required this.experimentId,
  required this.variationId,
  this.userAttributes,
  this.experimentMetadata,
});