LiveDetailData constructor

LiveDetailData(
  1. String id,
  2. String createdAt,
  3. String? finishedAt,
  4. LiveUser user,
  5. LiveOwner owner,
  6. List<LivePerformer> performers,
  7. String name,
  8. String description,
  9. List<LiveDescriptionFragment> descriptionFragments,
  10. bool isSingle,
  11. bool isAdult,
  12. bool isR15,
  13. bool isR18,
  14. bool isBroadcasting,
  15. String publicity,
  16. bool isClosed,
  17. String mode,
  18. String server,
  19. String channelId,
  20. String source,
  21. bool isEnabledMicInput,
  22. bool isEnabledGifting,
  23. bool isEnabledChat,
  24. Thumbnail? thumbnail,
  25. int? memberCount,
  26. int audienceCount,
  27. int totalAudienceCount,
  28. int heartCount,
  29. int chatCount,
  30. int performerCount,
)

Implementation

LiveDetailData(
  this.id,
  this.createdAt,
  this.finishedAt,
  this.user,
  this.owner,
  this.performers,
  this.name,
  this.description,
  this.descriptionFragments,
  this.isSingle,
  this.isAdult,
  this.isR15,
  this.isR18,
  this.isBroadcasting,
  this.publicity,
  this.isClosed,
  this.mode,
  this.server,
  this.channelId,
  this.source,
  this.isEnabledMicInput,
  this.isEnabledGifting,
  this.isEnabledChat,
  this.thumbnail,
  this.memberCount,
  this.audienceCount,
  this.totalAudienceCount,
  this.heartCount,
  this.chatCount,
  this.performerCount,
);