FrequencyState constructor

const FrequencyState({
  1. int total = 0,
  2. int windowCount = 0,
  3. int? windowAnchorAt,
  4. String? sessionId,
  5. int? stoppedAt,
})

Implementation

const FrequencyState({
  this.total = 0,
  this.windowCount = 0,
  this.windowAnchorAt,
  this.sessionId,
  this.stoppedAt,
});