MicrosoftIdpUtils constructor

MicrosoftIdpUtils({
  1. required MicrosoftIdpConfig config,
  2. required AuthUsers authUsers,
})

Creates a new instance of MicrosoftIdpUtils.

Implementation

MicrosoftIdpUtils({
  required this.config,
  required final AuthUsers authUsers,
}) : _authUsers = authUsers {
  _oauth2Util = OAuth2PkceUtil(config: config.oauth2Config);
}