AppleIdpUtils constructor

AppleIdpUtils({
  1. AppleIdpConfig? config,
  2. required TokenManager tokenManager,
  3. required SignInWithApple signInWithApple,
  4. required AuthUsers authUsers,
})

Creates a new instance of AppleIdpUtils.

Implementation

AppleIdpUtils({
  this.config,
  required final TokenManager tokenManager,
  required final SignInWithApple signInWithApple,
  required final AuthUsers authUsers,
}) : _tokenManager = tokenManager,
     _signInWithApple = signInWithApple,
     _authUsers = authUsers;