authenticationCodeTypeTelegramMessage property

AuthenticationCodeTypeTelegramMessage? authenticationCodeTypeTelegramMessage

An authentication code is delivered via a private Telegram message, which can be viewed from another active session

Implementation

AuthenticationCodeTypeTelegramMessage?
    get authenticationCodeTypeTelegramMessage {
  if (this is AuthenticationCodeTypeTelegramMessage) {
    return this as AuthenticationCodeTypeTelegramMessage;
  }
  return null;
}