in packages/web_drivers/lib/firefox_driver_installer.dart [113:126]
Future<void> _uncompressWithZip(io.File downloadedFile) async {
final io.ProcessResult unzipResult = await io.Process.run('unzip', <String>[
driverDownload!.path,
'-d',
driverDir.path,
]);
if (unzipResult.exitCode != 0) {
throw Exception(
'Failed to unzip the downloaded gecko driver ${driverDownload!.path}.\n'
'With the driver path ${driverDir.path}\n'
'The unzip process exited with code ${unzipResult.exitCode}.');
}
}