MixpanelFlagVariant constructor

MixpanelFlagVariant({
  1. required String key,
  2. required dynamic value,
  3. String? experimentId,
  4. bool? isExperimentActive,
  5. bool? isQaTester,
})

Implementation

MixpanelFlagVariant({
  required this.key,
  required this.value,
  this.experimentId,
  this.isExperimentActive,
  this.isQaTester,
});