MSALInteractiveTokenParameters constructor

MSALInteractiveTokenParameters({
  1. required List<String> scopes,
  2. Map<String, dynamic>? extraQueryParameters,
  3. String? correlationId,
  4. Uri? authority,
  5. List<String>? extraScopesToConsent,
  6. String? loginHint,
  7. MSALPromptType? promptType,
})

Implementation

MSALInteractiveTokenParameters(
    {required super.scopes,
    super.extraQueryParameters,
    super.correlationId,
    this.authority,
    this.extraScopesToConsent,
    this.loginHint,
    this.promptType});