targetChatCurrent property
The currently opened chat needs to be kept
Implementation
TargetChatCurrent? get targetChatCurrent {
if (this is TargetChatCurrent) {
return this as TargetChatCurrent;
}
return null;
}
The currently opened chat needs to be kept
TargetChatCurrent? get targetChatCurrent {
if (this is TargetChatCurrent) {
return this as TargetChatCurrent;
}
return null;
}