AuthenticationService constructor

AuthenticationService({
  1. required MSALPublicClientApplicationConfig config,
  2. required List<String> defaultScopes,
  3. MSALWebviewParameters? webParams,
})

Implementation

AuthenticationService({
  required this.config,
  required List<String> defaultScopes,
  this.webParams,
})  : this._defaultInteractiveParams =
          MSALInteractiveTokenParameters(scopes: defaultScopes),
      this._defaultSilentParams =
          MSALSilentTokenParameters(scopes: defaultScopes),
      this._defaultSignoutParameters = MSALSignoutParameters();