AuthorizationStateWaitCode constructor

const AuthorizationStateWaitCode({
  1. required AuthenticationCodeInfo codeInfo,
  2. dynamic extra,
  3. int? clientId,
})

TDLib needs the user's authentication code to authorize. Call checkAuthenticationCode to check the code

Implementation

const AuthorizationStateWaitCode({
  required this.codeInfo,
  this.extra,
  this.clientId,
});