json static method

Map<String, dynamic> json(
  1. Uint8List compressed
)

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