systemBubbleTextStyle property

  1. @override
TextStyle get systemBubbleTextStyle
override

Text style for system message bubbles.

Implementation

@override
TextStyle get systemBubbleTextStyle => Theme.of(context).textTheme.bodySmall!.copyWith(
  color: Theme.of(context).colorScheme.onSurface.withOpacity(0.7),
  fontStyle: FontStyle.italic,
);