QuickChatWidget constructor

const QuickChatWidget({
  1. Key? key,
  2. required String widgetCode,
  3. required String appBarTitle,
  4. required Color appBarTitleColor,
  5. required Color backgroundColor,
  6. required Color appBarBackgroundColor,
  7. required Color appBarBackButtonColor,
})

Implementation

const QuickChatWidget({
  super.key,
  required this.widgetCode,
  required this.appBarTitle,
  required this.appBarTitleColor,
  required this.backgroundColor,
  required this.appBarBackgroundColor,
  required this.appBarBackButtonColor,
});