extractAssetZip function

Future<String> extractAssetZip(
  1. String assetPath, {
  2. String? targetPath,
  3. bool checkHash = false,
  4. String? invalidateKey,
})

Implementation

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