s static method

Map<String, dynamic> s(
  1. Map<String, dynamic> t
)

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