buildAuthorizationUri method
Builds Authorization Request Uri with the provided parameters.
redirectUri is the URI to which the user will be redirected after authorization.
scope is a list of BattleNetScope values defining the requested permissions.
Returns a Uri for the authorization request.
Implementation
Uri buildAuthorizationUri({
required Uri redirectUri,
required List<BattleNetScope> scope,
}) {
return _oauthClient.buildAuthorizationUri(
redirectUri: redirectUri,
scope: scope,
);
}