LiveSummaryData constructor

LiveSummaryData({
  1. int totalDuration = 0,
  2. int totalViewers = 0,
  3. int totalGiftsSent = 0,
  4. int totalGiftUniqueSenders = 0,
  5. int totalGiftCoins = 0,
  6. int totalLikesReceived = 0,
  7. int totalMessageSent = 0,
})

Implementation

LiveSummaryData({
  this.totalDuration = 0,
  this.totalViewers = 0,
  this.totalGiftsSent = 0,
  this.totalGiftUniqueSenders = 0,
  this.totalGiftCoins = 0,
  this.totalLikesReceived = 0,
  this.totalMessageSent = 0,
});