iosUnzip static method

Future<bool> iosUnzip(
  1. String zipPath, [
  2. Directory? destination
])

iOS has to resolve with file://

Implementation

static Future<bool> iosUnzip(String zipPath, [Directory? destination]) async {
  return await _unzip(File(zipPath.split('file://').last), destination);
}