Skip to main content
1

💾 Copy to Clipboard

copyToClipboard()
Future<void>
Copies the content of this string to the system clipboard. Must be awaited as it interacts with platform services.
ElevatedButton(
  onPressed: () async {
    const secretCode = 'ABC-123-XYZ';
    await secretCode.copyToClipboard();
  },
  child: const Text('Copy Code'),
);