previewBuilder method
Implementation
@override
Widget previewBuilder(BuildContext context, Message message) {
final p = message.payload as LocationPayload;
return Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(Icons.location_on_rounded, size: 14, color: Colors.grey),
const SizedBox(width: 4),
Text(
p.label ?? p.address ?? 'Location',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(fontSize: 13, color: Colors.black54),
),
],
);
}