ChannelFull constructor

const ChannelFull({
  1. required bool canViewParticipants,
  2. required bool canSetUsername,
  3. required bool canSetStickers,
  4. required bool hiddenPrehistory,
  5. required bool canSetLocation,
  6. required bool hasScheduled,
  7. required bool canViewStats,
  8. required bool blocked,
  9. required bool canDeleteChannel,
  10. required bool antispam,
  11. required bool participantsHidden,
  12. required bool translationsDisabled,
  13. required bool storiesPinnedAvailable,
  14. required bool viewForumAsMessages,
  15. required int id,
  16. required String about,
  17. int? participantsCount,
  18. int? adminsCount,
  19. int? kickedCount,
  20. int? bannedCount,
  21. int? onlineCount,
  22. required int readInboxMaxId,
  23. required int readOutboxMaxId,
  24. required int unreadCount,
  25. required PhotoBase chatPhoto,
  26. required PeerNotifySettingsBase notifySettings,
  27. ExportedChatInviteBase? exportedInvite,
  28. required List<BotInfoBase> botInfo,
  29. int? migratedFromChatId,
  30. int? migratedFromMaxId,
  31. int? pinnedMsgId,
  32. StickerSetBase? stickerset,
  33. int? availableMinId,
  34. int? folderId,
  35. int? linkedChatId,
  36. ChannelLocationBase? location,
  37. int? slowmodeSeconds,
  38. DateTime? slowmodeNextSendDate,
  39. int? statsDc,
  40. required int pts,
  41. InputGroupCallBase? call,
  42. int? ttlPeriod,
  43. List<String>? pendingSuggestions,
  44. PeerBase? groupcallDefaultJoinAs,
  45. String? themeEmoticon,
  46. int? requestsPending,
  47. List<int>? recentRequesters,
  48. PeerBase? defaultSendAs,
  49. ChatReactionsBase? availableReactions,
  50. PeerStoriesBase? stories,
  51. WallPaperBase? wallpaper,
})

Channel Full constructor.

Implementation

const ChannelFull({
  required this.canViewParticipants,
  required this.canSetUsername,
  required this.canSetStickers,
  required this.hiddenPrehistory,
  required this.canSetLocation,
  required this.hasScheduled,
  required this.canViewStats,
  required this.blocked,
  required this.canDeleteChannel,
  required this.antispam,
  required this.participantsHidden,
  required this.translationsDisabled,
  required this.storiesPinnedAvailable,
  required this.viewForumAsMessages,
  required this.id,
  required this.about,
  this.participantsCount,
  this.adminsCount,
  this.kickedCount,
  this.bannedCount,
  this.onlineCount,
  required this.readInboxMaxId,
  required this.readOutboxMaxId,
  required this.unreadCount,
  required this.chatPhoto,
  required this.notifySettings,
  this.exportedInvite,
  required this.botInfo,
  this.migratedFromChatId,
  this.migratedFromMaxId,
  this.pinnedMsgId,
  this.stickerset,
  this.availableMinId,
  this.folderId,
  this.linkedChatId,
  this.location,
  this.slowmodeSeconds,
  this.slowmodeNextSendDate,
  this.statsDc,
  required this.pts,
  this.call,
  this.ttlPeriod,
  this.pendingSuggestions,
  this.groupcallDefaultJoinAs,
  this.themeEmoticon,
  this.requestsPending,
  this.recentRequesters,
  this.defaultSendAs,
  this.availableReactions,
  this.stories,
  this.wallpaper,
}) : super._();