authorizationStateWaitEmailCode property
TDLib needs the user's authentication code sent to an email address to authorize. Call checkAuthenticationEmailCode to provide the code
Implementation
AuthorizationStateWaitEmailCode? get authorizationStateWaitEmailCode {
if (this is AuthorizationStateWaitEmailCode) {
return this as AuthorizationStateWaitEmailCode;
}
return null;
}