bundleFile method

Future<File> bundleFile(
  1. String bundleName
)

Returns the cached bundle ZIP file path.

Implementation

Future<File> bundleFile(String bundleName) async {
  final dir = await getCacheDir();
  return File('${dir.path}/$bundleName');
}