MicrosoftLiveConnectAuthenticator constructor

MicrosoftLiveConnectAuthenticator(
  1. String? identifier,
  2. String? clientId,
  3. String? clientSecret,
  4. String? tokenUrl,
  5. String? baseUrl,
  6. String? redirectUrl,
  7. List<String>? scopes,
)

Implementation

MicrosoftLiveConnectAuthenticator(
    String? identifier,
    String? clientId,
    String? clientSecret,
    String? tokenUrl,
    String? baseUrl,
    String? redirectUrl,
    List<String>? scopes)
    : super(identifier, clientId, clientSecret, tokenUrl, baseUrl,
          redirectUrl) {
  this.scope = scopes;
}