previewBuilder method
Implementation
@override
Widget previewBuilder(BuildContext context, Message m) {
final p = m.payload as StickerPayload;
return Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(Icons.emoji_emotions, size: 14, color: Colors.grey),
const SizedBox(width: 4),
Text(
p.emoji != null ? 'Sticker ${p.emoji}' : 'Sticker',
style: const TextStyle(color: Colors.grey, fontSize: 13),
),
],
);
}