decryptSmsCash function
this handles sms and cash decryption @param context @param encrypt_cash_text_sms @param encrypt_m3pin @param encrypt_session_id @return @throws Exception
Implementation
String decryptSmsCash({required String encryptCashTextSms, required String encryptM3pin, required String encryptSessionId}) {
return CipherControl.instance()
.decryptNew(encryptCashTextSms, encryptM3pin, encryptSessionId);
}