authorizationStateWaitEmailAddress property
TDLib needs the user's email address to authorize. Call setAuthenticationEmailAddress to provide the email address, or directly call checkAuthenticationEmailCode with Apple ID/Google ID token if allowed
Implementation
AuthorizationStateWaitEmailAddress? get authorizationStateWaitEmailAddress {
if (this is AuthorizationStateWaitEmailAddress) {
return this as AuthorizationStateWaitEmailAddress;
}
return null;
}