AiutaConsentFeature.builtIn constructor

AiutaConsentFeature.builtIn({
  1. 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,
    ),
  );
}