deletedBubbleColor property
Color for deleted message bubbles.
Implementation
@override
Color get deletedBubbleColor {
final isDark = Theme.of(context).brightness == Brightness.dark;
final surfaceColor = Theme.of(context).colorScheme.surface;
return isDark ? surfaceColor.withOpacity(0.3) : surfaceColor.withOpacity(0.5);
}