Copies the given text to the clipboard.
Future<void> copyToClipboard(String text) async { await Clipboard.setData(ClipboardData(text: text)); }