Future<void> saveToclipboard(feed.Post post) async { final data = ClipboardData(text: post.record.text); await Clipboard.setData(data); }