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