decodeBytes method Null safety

Archive decodeBytes(
  1. List<int> data,
  2. {bool verify = false,
  3. bool storeData = true}
)

Implementation

Archive decodeBytes(List<int> data,
    {bool verify = false, bool storeData = true}) {
  return decodeBuffer(InputStream(data),
      verify: verify, storeData: storeData);
}