targetChatChosen property
The chat needs to be chosen by the user among chats of the specified types
Implementation
TargetChatChosen? get targetChatChosen {
if (this is TargetChatChosen) {
return this as TargetChatChosen;
}
return null;
}