lib/models/message.dart
.. .. @@ -151,4 +151,10 @@ 151 151 type == MessageType.voice && 152 152 (audioUri == null || audioUri!.isEmpty) && 153 153 content.isEmpty; 154 +155 + /// Returns true if this is a text message with no content (empty bubble).156 + bool get isEmptyText =>157 + type == MessageType.text &&158 + content.trim().isEmpty &&159 + imageBase64 == null;154 160 }