microsoftOAuthLogin static method

Future<User?> microsoftOAuthLogin({
  1. dynamic onError(
    1. String
    )?,
})

This Function is Responsible for initiating the Github OAuthEngine

Implementation

static Future<User?> microsoftOAuthLogin({
  Function(String)? onError,
}) async {
  return await performOAuthLogin(
    provider: "microsoft.com",
    onError: onError,
  );
}