q static method
Implementation
static Map<String, dynamic> q(Map<String, dynamic> t, List<String>? retain) {
if (retain == null) {
return t;
}
if ($artifactCipher == null || $artifactCipher!.isEmpty) {
throw Exception("\$artifactCipher is undefined! cannot compress json!");
}
return compressEncryptJson(
t,
encryptionKey: $artifactCipher!,
retainer: retain.isEmpty ? null : (k, v) => retain.contains(k),
);
}