copyLyricShare static method

Future copyLyricShare({
  1. required dynamic chantUser,
})

Implementation

static Future copyLyricShare(
    {required chantUser}) async {
  String data = copyLyricTextData(chantUser: chantUser);
  //msg += '${Constant.appName}\n\n';
  await Share.share(data, subject: 'label_Partager'.tr);
  //Clipboard.setData(ClipboardData( text: msg));
}