decodeBytes method Null safety

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

Implementation

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