json static method
Decompresses a Uint8List that was compressed using Shrink.json and converts it back to a JSON object.
Returns the original Map<String, dynamic> JSON object.
Implementation
static Map<String, dynamic> json(Uint8List compressed) {
return restoreJson(compressed);
}