showPrivacyOptionsForm method
Shows the privacy-options form (the "Manage consent" surface).
Throws an AdFlowError (kind consent) on form error.
Implementation
@override
Future<void> showPrivacyOptionsForm() async {
showPrivacyOptionsFormCalls++;
final error = privacyOptionsFormError;
if (error != null) throw error;
onPrivacyOptionsFormShown?.call();
}