withPrivacyPolicy method

  1. @Deprecated("Please set url in create(privacyPolicyUrl:) instead.")
ConsentFlow withPrivacyPolicy(
  1. String? policyUrl
)

Override a link to the App's Privacy Policy in the consent form.

Implementation

@Deprecated("Please set url in create(privacyPolicyUrl:) instead.")
ConsentFlow withPrivacyPolicy(String? policyUrl) {
  privacyPolicyUrl = policyUrl;
  return this;
}