UpdateSecretChat constructor

const UpdateSecretChat({
  1. required SecretChat secretChat,
  2. dynamic extra,
  3. int? clientId,
})

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

const UpdateSecretChat({
  required this.secretChat,
  this.extra,
  this.clientId,
});