copyLyricTextData static method

String copyLyricTextData({
  1. required dynamic chantUser,
})

Implementation

static String copyLyricTextData({required chantUser}) {
  String msg =
      '${chantUser.position} - ${Sanitizer.UNCODE_UTF_8(chantUser.titre)}';
  msg += '\n\n${CleanData.ReplaceHtmlBreakToSlashN(chantUser.contenu)}';
  msg += '\n${CleanData.ReplaceHtmlBreakToSlashN(chantUser.auteurChant)}';
  msg += '\n\n${Constant.urlAppMobileCCG()}';
  return msg;
}