s static method

Map<String, dynamic> s(
  1. Map<String, dynamic> data,
  2. String? cipher
)

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