setCustomParameters method

GoogleAuthProvider setCustomParameters(
  1. Map customOAuthParameters
)

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

Implementation

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