targetChatCurrent property

TargetChatCurrent? targetChatCurrent

The currently opened chat needs to be kept

Implementation

TargetChatCurrent? get targetChatCurrent {
  if (this is TargetChatCurrent) {
    return this as TargetChatCurrent;
  }
  return null;
}