TargetChatChosen constructor

const TargetChatChosen({
  1. required bool allowUserChats,
  2. required bool allowBotChats,
  3. required bool allowGroupChats,
  4. required bool allowChannelChats,
})

The chat needs to be chosen by the user among chats of the specified types

Implementation

const TargetChatChosen({
  required this.allowUserChats,
  required this.allowBotChats,
  required this.allowGroupChats,
  required this.allowChannelChats,
});