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