BasicGroupFullInfo constructor

const BasicGroupFullInfo({
  1. ChatPhoto? photo,
  2. required String description,
  3. required int creatorUserId,
  4. required List<ChatMember> members,
  5. required bool canHideMembers,
  6. required bool canToggleAggressiveAntiSpam,
  7. ChatInviteLink? inviteLink,
  8. required List<BotCommands> botCommands,
  9. dynamic extra,
  10. int? clientId,
})

Contains full information about a basic group

Implementation

const BasicGroupFullInfo({
  this.photo,
  required this.description,
  required this.creatorUserId,
  required this.members,
  required this.canHideMembers,
  required this.canToggleAggressiveAntiSpam,
  this.inviteLink,
  required this.botCommands,
  this.extra,
  this.clientId,
});