SupergroupFullInfo constructor

const SupergroupFullInfo({
  1. ChatPhoto? photo,
  2. required String description,
  3. required int memberCount,
  4. required int administratorCount,
  5. required int restrictedCount,
  6. required int bannedCount,
  7. required int linkedChatId,
  8. required int slowModeDelay,
  9. required double slowModeDelayExpiresIn,
  10. required bool canGetMembers,
  11. required bool canSetUsername,
  12. required bool canSetStickerSet,
  13. required bool canSetLocation,
  14. required bool canGetStatistics,
  15. required bool isAllHistoryAvailable,
  16. required int stickerSetId,
  17. ChatLocation? location,
  18. ChatInviteLink? inviteLink,
  19. required List<BotCommands> botCommands,
  20. required int upgradedFromBasicGroupId,
  21. required int upgradedFromMaxMessageId,
  22. dynamic extra,
  23. int? clientId,
})

Contains full information about a supergroup or channel

Implementation

const SupergroupFullInfo({
  this.photo,
  required this.description,
  required this.memberCount,
  required this.administratorCount,
  required this.restrictedCount,
  required this.bannedCount,
  required this.linkedChatId,
  required this.slowModeDelay,
  required this.slowModeDelayExpiresIn,
  required this.canGetMembers,
  required this.canSetUsername,
  required this.canSetStickerSet,
  required this.canSetLocation,
  required this.canGetStatistics,
  required this.isAllHistoryAvailable,
  required this.stickerSetId,
  this.location,
  this.inviteLink,
  required this.botCommands,
  required this.upgradedFromBasicGroupId,
  required this.upgradedFromMaxMessageId,
  this.extra,
  this.clientId,
});