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