AuthEndpointsData constructor

AuthEndpointsData({
  1. required String loginHint,
  2. required String microsoftGraphApiBaseUrl,
  3. required List<String> scopes,
  4. required String tenantID,
  5. required String oAuthBaseUrl,
  6. required String redirectEnv,
  7. required String redirectUrl,
  8. required String authEndpoint,
  9. required String tokenEndpoint,
  10. required String openIDMetadataEndpoint,
  11. required String userInfoEndpoint,
})

Implementation

AuthEndpointsData({
  required this.loginHint,
  required this.microsoftGraphApiBaseUrl,
  required this.scopes,
  required this.tenantID,
  required this.oAuthBaseUrl,
  required this.redirectEnv,
  required this.redirectUrl,
  required this.authEndpoint,
  required this.tokenEndpoint,
  required this.openIDMetadataEndpoint,
  required this.userInfoEndpoint,
});