FastCopyButton constructor

const FastCopyButton({
  1. Key? key,
  2. String? valueText,
  3. bool showNotification = true,
  4. bool isEnabled = true,
  5. String? message,
  6. Widget? icon,
})

Implementation

const FastCopyButton({
  super.key,
  String? valueText,
  this.showNotification = true,
  this.isEnabled = true,
  this.message,
  this.icon,
}) : valueText = valueText ?? kFastEmptyString;