AiutaConfiguration constructor

AiutaConfiguration({
  1. required AiutaAuth auth,
  2. required AiutaUserInterfaceConfiguration userInterface,
  3. required AiutaFeatures features,
  4. AiutaAnalytics? analytics,
  5. 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,
});