AiutaConsentFeature.builtIn constructor
AiutaConsentFeature.builtIn({
- required String termsOfServiceUrl,
Creates a built-in consent feature configuration with default settings.
Implementation
factory AiutaConsentFeature.builtIn({
required String termsOfServiceUrl,
}) {
return AiutaConsentEmbeddedIntoOnboardingFeature(
strings: AiutaConsentEmbeddedStringsBuiltIn(
termsOfServiceUrl: termsOfServiceUrl,
),
);
}