setCustomParameters method

OAuthProvider setCustomParameters(
  1. Map customOAuthParameters
)

Sets the OAuth custom parameters to pass in a OAuth request for popup and redirect sign-in operations. This is a Web only API.

Implementation

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