SIQTheme constructor
SIQTheme({
- String? themeColor,
- SIQLauncherTheme? launcher,
- SIQTabBarTheme? tabBar,
- SIQEmptyViewTheme? emptyView,
- SIQOfflineBannerTheme? offlineBanner,
- SIQNoNetworkBannerTheme? networkWaitingBanner,
- SIQConversationTheme? conversation,
- SIQFAQTheme? faq,
- SIQChatWindowTheme? chat,
- SIQChatFormTheme? form,
- SIQFeedbackTheme? feedback,
- SIQInAppNotificationTheme? inAppNotification,
Implementation
SIQTheme({
this.themeColor,
SIQLauncherTheme? launcher,
SIQTabBarTheme? tabBar,
SIQNavigationTheme? navigation,
SIQEmptyViewTheme? emptyView,
SIQOfflineBannerTheme? offlineBanner,
SIQNoNetworkBannerTheme? networkWaitingBanner,
SIQConversationTheme? conversation,
SIQFAQTheme? faq,
SIQChatWindowTheme? chat,
SIQChatFormTheme? form,
SIQFeedbackTheme? feedback,
SIQInAppNotificationTheme? inAppNotification,
}) : launcher = launcher ?? SIQLauncherTheme(),
tabBar = tabBar ?? SIQTabBarTheme(),
navigation = navigation ?? SIQNavigationTheme(),
emptyView = emptyView ?? SIQEmptyViewTheme(),
offlineBanner = offlineBanner ?? SIQOfflineBannerTheme(),
networkWaitingBanner =
networkWaitingBanner ?? SIQNoNetworkBannerTheme(),
conversation = conversation ?? SIQConversationTheme(),
faq = faq ?? SIQFAQTheme(),
chat = chat ?? SIQChatWindowTheme(),
form = form ?? SIQChatFormTheme(),
feedback = feedback ?? SIQFeedbackTheme(),
inAppNotification = inAppNotification ?? SIQInAppNotificationTheme();