If the Clipboard is not empty or has something to paste
Future<bool> get hasClipboardContent async { final clipboardData = await Clipboard.getData(Clipboard.kTextPlain); return clipboardData != null; }