AiutaConfiguration constructor
AiutaConfiguration({
- required AiutaAuth auth,
- required AiutaUserInterfaceConfiguration userInterface,
- required AiutaFeatures features,
- AiutaAnalytics? analytics,
- required AiutaDebugSettings debugSettings,
Creates an AiutaConfiguration with auth
to authenticate Aiuta to use
digital try-on API with your credentials, userInterface
to configure
the user interface behavior, themes, and colors, features
to configure
the features of the SDK and the interaction with thw app, analytics
to
receive events from the SDK and send them to your analytics provider, and
debugSettings
to configure the logging and validation of the parameters.
Implementation
AiutaConfiguration({
required this.auth,
required this.userInterface,
required this.features,
this.analytics,
required this.debugSettings,
});