copyFun method

dynamic copyFun(
  1. String text,
  2. BuildContext context, {
  3. String? message,
})

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);
  }
}