getBotBubbleDecoration method

BoxDecoration getBotBubbleDecoration(
  1. ThemeData appTheme
)

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),
  );
}