secretChatStateClosed property

SecretChatStateClosed? secretChatStateClosed

The secret chat is closed

Implementation

SecretChatStateClosed? get secretChatStateClosed {
  if (this is SecretChatStateClosed) {
    return this as SecretChatStateClosed;
  }
  return null;
}