UserEventFrequencyCondition constructor

UserEventFrequencyCondition({
  1. String? eventName,
  2. int? lookbackPeriod,
  3. FrequencyUnit? unit,
  4. ConditionOperator? comparison,
  5. DateTime? since,
  6. int? threshold,
})

Implementation

UserEventFrequencyCondition({
  this.eventName,
  this.lookbackPeriod,
  this.unit,
  this.comparison,
  this.since,
  this.threshold,
});