getAuthUrl method

Uri getAuthUrl({
  1. required AuthorizationCodeGrant grant,
  2. required String redirectUrl,
  3. required List<String>? scopes,
})

Implementation

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