AppleIdpUtils constructor

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

Creates a new instance of AppleIdpUtils.

Implementation

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