setCustomParameters method

GithubAuthProvider setCustomParameters(
  1. Map customOAuthParameters
)

Sets the OAuth custom parameters to pass in a GitHub OAuth request for popup and redirect sign-in operations.

Implementation

GithubAuthProvider setCustomParameters(
  Map<dynamic, dynamic> customOAuthParameters,
) {
  _parameters = customOAuthParameters;
  return this;
}