Paste the most recent entry from the system clipboard.
Returns null if the clipboard is empty.
Future<String?> paste() async { final data = await Clipboard.getData(Clipboard.kTextPlain); return data?.text; }