zipDecoder method

Archive zipDecoder({
  1. required String path,
  2. required String? password,
  3. required bool verify,
})

Implementation

Archive zipDecoder({
  required String path,
  required String? password,
  required bool verify,
}) {
  final ZipDecoder zipDecoder = ZipDecoder();

  return zipDecoder.decodeBuffer(InputFileStream(path),
      password: password, verify: verify);
}