sendToClipBoard property

Future<void> get sendToClipBoard

Copies the string to the clipboard.

Implementation

Future<void> get sendToClipBoard async {
  await Clipboard.setData(ClipboardData(text: this));
}