zipDecoder method
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);
}