getBotBubbleDecoration method
Apply theme with implicit fallbacks to default theme and app theme
Implementation
BoxDecoration getBotBubbleDecoration(ThemeData appTheme) {
if (botBubbleDecoration != null) return botBubbleDecoration!;
return BoxDecoration(
color: botBubbleColor ?? appTheme.colorScheme.surfaceContainerHighest,
borderRadius: botBubbleBorderRadius ?? BorderRadius.circular(16),
);
}