Decrypt the data with a key.
data
key
static Future<Object?> decryptWithKey(Object data, String key) => toFuture(SeaJsImpl.decrypt(dartToJs(data)!, key)).then(jsToDart);