AiutaUserInterfaceConfiguration constructor

AiutaUserInterfaceConfiguration({
  1. required AiutaPresentationStyle presentationStyle,
  2. required AiutaSwipeToDismissPolicy swipeToDismiss,
  3. required AiutaTheme theme,
})

Creates an AiutaUserInterfaceConfiguration with presentationStyle to configure the presentation style of the SDK, swipeToDismiss to configure the swipe-to-dismiss policy, and theme to configure the theme of the UI components.

Implementation

AiutaUserInterfaceConfiguration({
  required this.presentationStyle,
  required this.swipeToDismiss,
  required this.theme,
});