zipDecoder method
decode zip
Implementation
Archive zipDecoder({
/// GeneralLibrary
required String path,
/// GeneralLibrary
required String? password,
/// GeneralLibrary
required bool verify,
}) {
final ZipDecoder zipDecoder = ZipDecoder();
return zipDecoder.decodeStream(InputFileStream(path),
password: password, verify: verify);
}