CopyButton constructor

const CopyButton({
  1. required String textToCopy,
  2. VoidCallback? onCopied,
  3. double size = 16.0,
  4. IconData icon = Icons.copy,
  5. Key? key,
})

Creates a CopyButton.

Implementation

const CopyButton({
  required this.textToCopy,
  this.onCopied,
  this.size = 16.0,
  this.icon = Icons.copy,
  super.key,
});