MicrosoftSignInConfig constructor

MicrosoftSignInConfig({
  1. required String clientId,
  2. required String clientSecret,
  3. required String redirectUrl,
  4. List<String> scope = const ["user.read"],
})

Parameters required for web-based authentication flows

Implementation

MicrosoftSignInConfig(
    {
    ///This is the Identifier value shown on the detail view of the service after opening
    ///it from social sign in console or developer.
    required this.clientId,
    required this.clientSecret,
    required this.redirectUrl,
    this.scope = const ["user.read"]});