decryptSmsCash function

String decryptSmsCash({
  1. required String encryptCashTextSms,
  2. required String encryptM3pin,
  3. required String encryptSessionId,
})

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