copyWith method
Implementation
FrequencyState copyWith({
int? total,
int? windowCount,
int? windowAnchorAt,
String? sessionId,
int? stoppedAt,
}) =>
FrequencyState(
total: total ?? this.total,
windowCount: windowCount ?? this.windowCount,
windowAnchorAt: windowAnchorAt ?? this.windowAnchorAt,
sessionId: sessionId ?? this.sessionId,
stoppedAt: stoppedAt ?? this.stoppedAt,
);