deletedBubbleTextStyle property

  1. @override
TextStyle get deletedBubbleTextStyle
override

Text style for deleted message bubbles.

Implementation

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