loadConsentForm static method

void loadConsentForm(
  1. OnConsentFormLoadSuccessListener successListener,
  2. OnConsentFormLoadFailureListener failureListener
)

Loads a ConsentForm.

Check that ConsentInformation.isConsentFormAvailable() returns true prior to calling this method.

Implementation

static void loadConsentForm(OnConsentFormLoadSuccessListener successListener,
    OnConsentFormLoadFailureListener failureListener) {
  UserMessagingChannel.instance
      .loadConsentForm(successListener, failureListener);
}