Skip to main content

Documentation Index

Fetch the complete documentation index at: https://starrycodes.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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'),
);