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