decrypt method
Implementation
@override
Future<String?> decrypt({required String passPhrase, required String concatenatedCipherText}) async {
try {
final result = await js.context.callMethod('aesService.decryptWithConcatenatedCipherText', [passPhrase, concatenatedCipherText]);
return result;
} catch (e) {
log(e.toString());
return null;
}
}