jsonDataFromZip static method

Map jsonDataFromZip(
  1. List<int> byteData
)

Implementation

static Map jsonDataFromZip(List<int> byteData) {
  return json.decode(stringDataFromZip(byteData));
}