copyFun method
Implementation
copyFun(String text, BuildContext context,{String? message}) {
if (text != null || text != '') {
String datatext = Helper.decode(text);
Clipboard.setData(ClipboardData(text: datatext));
// if (context != null){
//
// }
Ui(context).errorAlert(
message: message ?? "Success copy",
);
// Toast.show(Languanges.of(context)!.succesCopied);
}
}