outgoingBubbleContentBackgroundColor property

Color? outgoingBubbleContentBackgroundColor
final

Background color of outgoing message bubbles.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfChatTheme(
      data: SfChatThemeData(
        outgoingBubbleContentBackgroundColor: Colors.blueAccent,
      ),
      child: SfChat(),
    ),
  );
}

Implementation

final Color? outgoingBubbleContentBackgroundColor;