copyToClipboard static method

bool copyToClipboard(
  1. String? text
)

拷贝文本内容到剪切板

Implementation

static bool copyToClipboard(String? text) {
  Clipboard.setData(ClipboardData(text: text));
  return true;
}