restoreJson method

Map<String, dynamic> restoreJson()

Decompresses this Uint8List as a JSON object.

This method should be used on data that was compressed with Map.shrinkJson or Shrink.json.

Returns the original JSON object as a Map<String, dynamic>.

Implementation

Map<String, dynamic> restoreJson() => utils.restoreJson(this);