AuthorizationStateWaitRegistration constructor

const AuthorizationStateWaitRegistration({
  1. required TermsOfService termsOfService,
  2. dynamic extra,
  3. int? clientId,
})

The user is unregistered and need to accept terms of service and enter their first name and last name to finish registration

Implementation

const AuthorizationStateWaitRegistration({
  required this.termsOfService,
  this.extra,
  this.clientId,
});