byteDataFromZip static method

List<int> byteDataFromZip(
  1. List<int> byteData
)

Implementation

static List<int> byteDataFromZip(List<int> byteData) {
  return gzip.decode(byteData);
}