updateSecretChat property

UpdateSecretChat? updateSecretChat

Some data of a secret chat has changed. This update is guaranteed to come before the secret chat identifier is returned to the application

Implementation

UpdateSecretChat? get updateSecretChat {
  if (this is UpdateSecretChat) {
    return this as UpdateSecretChat;
  }
  return null;
}