authorizationStateReady property
The user has been successfully authorized. TDLib is now ready to answer general requests
Implementation
AuthorizationStateReady? get authorizationStateReady {
if (this is AuthorizationStateReady) {
return this as AuthorizationStateReady;
}
return null;
}