authorizationStateWaitPhoneNumber property
TDLib needs the user's phone number to authorize. Call setAuthenticationPhoneNumber to provide the phone number, or use requestQrCodeAuthentication or checkAuthenticationBotToken for other authentication options
Implementation
AuthorizationStateWaitPhoneNumber? get authorizationStateWaitPhoneNumber {
if (this is AuthorizationStateWaitPhoneNumber) {
return this as AuthorizationStateWaitPhoneNumber;
}
return null;
}