s static method
Implementation
static Map<String, dynamic> s(Map<String, dynamic> data, String? cipher) {
if (cipher == null || cipher.isEmpty) {
throw Exception("\$artifactCipher is undefined! cannot decompress json!");
}
return decompressDecryptJson(
data,
encryptionKey: cipher,
ignoreWarnings: true,
keepUnknownKeys: true,
);
}