setCustomParameters method

OAuthProvider setCustomParameters(
  1. Map<String, dynamic> customOAuthParameters
)

Sets the OAuth custom parameters to pass in an OAuth request for popup and redirect sign-in operations. For a detailed list, check the reserved required OAuth 2.0 parameters such as client_id, redirect_uri, scope, response_type and state are not allowed and will be ignored.

Implementation

OAuthProvider setCustomParameters(
        Map<String, dynamic> customOAuthParameters) =>
    OAuthProvider.fromJsObject(
        jsObject.setCustomParameters(jsify(customOAuthParameters)));