Stores the provided text on the Clipboard.
text
Future<void> copy({required String text}) async { await Clipboard.setData(ClipboardData(text: text)); }