CopyTextButton constructor

const CopyTextButton({
  1. Key? key,
  2. required String infoText,
  3. required String successToast,
  4. Color? backgroundColor,
  5. Color? textColor,
})

Implementation

const CopyTextButton({
  Key? key,
  required this.infoText,
  required this.successToast,
  this.backgroundColor,
  this.textColor,
}) : super(key: key);