AiutaConsentStandaloneStringsCustom constructor

AiutaConsentStandaloneStringsCustom({
  1. String? consentPageTitle,
  2. required String consentTitle,
  3. required String consentDescriptionHtml,
  4. String? consentFooterHtml,
  5. required String consentButtonAccept,
  6. String? consentButtonReject,
})

Creates an AiutaConsentStandaloneStringsCustom with the specified strings.

The consentTitle, consentDescriptionHtml, and consentButtonAccept are required. The consentPageTitle, consentFooterHtml, and consentButtonReject are optional.

The consentButtonReject will not be shown if null or AiutaConsentStandaloneOnboardingPageFeature is used.

Implementation

AiutaConsentStandaloneStringsCustom({
  this.consentPageTitle,
  required this.consentTitle,
  required this.consentDescriptionHtml,
  this.consentFooterHtml,
  required this.consentButtonAccept,
  this.consentButtonReject,
}) : super(AiutaCustomizationType.custom);