getAuthUrl method
Implementation
Uri getAuthUrl({
required AuthorizationCodeGrant grant,
required String redirectUrl,
required List<String>? scopes,
}) {
return grant.getAuthorizationUrl(
Uri.parse(redirectUrl),
scopes: scopes,
);
}