stringDataFromZip static method

String stringDataFromZip(
  1. List<int> byteData
)

Implementation

static String stringDataFromZip(List<int> byteData) {
  return utf8.decode(byteDataFromZip(byteData));
}