open method
Opens an archive from a local file
.
Implementation
@override
Future<Archive?> open(FileSystemEntity file, String? password) async =>
ZipContainer(file.path)
.archive
.then((zipPackage) =>
(zipPackage != null) ? ZipArchive(zipPackage) : null)
.catchError((error, stackTrace) {});