TargetChatChosen constructor

TargetChatChosen({
  1. String? extra,
  2. int? client_id,
  3. Bool? allow_user_chats,
  4. Bool? allow_bot_chats,
  5. Bool? allow_group_chats,
  6. Bool? allow_channel_chats,
})

Implementation

TargetChatChosen({
  super.extra,
  super.client_id,
  this.allow_user_chats,
  this.allow_bot_chats,
  this.allow_group_chats,
  this.allow_channel_chats,
});