authorizationStateClosed property
TDLib client is in its final state. All databases are closed and all resources are released. No other updates will be received after this. All queries will be responded to
Implementation
AuthorizationStateClosed? get authorizationStateClosed {
if (this is AuthorizationStateClosed) {
return this as AuthorizationStateClosed;
}
return null;
}