authorizationStateWaitCode property
TDLib needs the user's authentication code to authorize. Call checkAuthenticationCode to check the code
Implementation
AuthorizationStateWaitCode? get authorizationStateWaitCode {
if (this is AuthorizationStateWaitCode) {
return this as AuthorizationStateWaitCode;
}
return null;
}