StatsResponse constructor

StatsResponse({
  1. double? avgSessionLengthMinutes,
  2. double? churnProbability,
  3. int? daysSinceLastPlayed,
  4. double? highSpenderProbability,
  5. String? kind,
  6. int? numPurchases,
  7. int? numSessions,
  8. double? numSessionsPercentile,
  9. double? spendPercentile,
  10. double? spendProbability,
  11. double? totalSpendNext28Days,
})

Implementation

StatsResponse({
  this.avgSessionLengthMinutes,
  this.churnProbability,
  this.daysSinceLastPlayed,
  this.highSpenderProbability,
  this.kind,
  this.numPurchases,
  this.numSessions,
  this.numSessionsPercentile,
  this.spendPercentile,
  this.spendProbability,
  this.totalSpendNext28Days,
});