MicrosoftLiveDeclaration constructor

const MicrosoftLiveDeclaration(
  1. String name,
  2. String clientId,
  3. String clientSecret,
  4. String redirectUrl, {
  5. String baseUrl = "/",
  6. List<String>? scopes,
})

Implementation

const MicrosoftLiveDeclaration(
    String name, this.clientId, this.clientSecret, this.redirectUrl,
    {String baseUrl: "/", this.scopes})
    : super(name, baseUrl: baseUrl);