extractFileZip function

Future<String> extractFileZip(
  1. String filePath, {
  2. String? targetPath,
  3. bool checkHash = false,
})

Implementation

Future<String> extractFileZip(String filePath,
    {String? targetPath, bool checkHash = false}) async {
  return extractAssetOrFile(filePath,
      isAsset: false, targetPath: targetPath, checkHash: checkHash);
}