copy static method
Implementation
static void copy(BuildContext context, String? text, {String? toastText}) {
Clipboard.setData(ClipboardData(text: text ?? ""));
HapticFeedback.lightImpact();
if (toastText != null) {
showToast(context, message: toastText);
}
}