FloatingChatBubble constructor

const FloatingChatBubble({
  1. Key? key,
  2. required AIService service,
  3. ChatTheme? theme,
  4. String? title,
  5. IconData? bubbleIcon,
  6. Color? bubbleColor,
  7. bool showCloseButton = true,
  8. double bubbleSize = 56,
  9. EdgeInsets padding = const EdgeInsets.all(16),
})

Implementation

const FloatingChatBubble({
  super.key,
  required this.service,
  this.theme,
  this.title,
  this.bubbleIcon,
  this.bubbleColor,
  this.showCloseButton = true,
  this.bubbleSize = 56,
  this.padding = const EdgeInsets.all(16),
});