ChatFull constructor

const ChatFull({
  1. required bool canSetUsername,
  2. required bool hasScheduled,
  3. required bool translationsDisabled,
  4. required int id,
  5. required String about,
  6. required ChatParticipantsBase participants,
  7. PhotoBase? chatPhoto,
  8. required PeerNotifySettingsBase notifySettings,
  9. ExportedChatInviteBase? exportedInvite,
  10. List<BotInfoBase>? botInfo,
  11. int? pinnedMsgId,
  12. int? folderId,
  13. InputGroupCallBase? call,
  14. int? ttlPeriod,
  15. PeerBase? groupcallDefaultJoinAs,
  16. String? themeEmoticon,
  17. int? requestsPending,
  18. List<int>? recentRequesters,
  19. ChatReactionsBase? availableReactions,
})

Chat Full constructor.

Implementation

const ChatFull({
  required this.canSetUsername,
  required this.hasScheduled,
  required this.translationsDisabled,
  required this.id,
  required this.about,
  required this.participants,
  this.chatPhoto,
  required this.notifySettings,
  this.exportedInvite,
  this.botInfo,
  this.pinnedMsgId,
  this.folderId,
  this.call,
  this.ttlPeriod,
  this.groupcallDefaultJoinAs,
  this.themeEmoticon,
  this.requestsPending,
  this.recentRequesters,
  this.availableReactions,
}) : super._();