getCachedFilePath static method

Future<String> getCachedFilePath(
  1. String url
)

Implementation

static Future<String> getCachedFilePath(String url) async {
  final file = await instance.getSingleFile(url, key: key + url);
  return file.path;
}