Uint8List? get(String url) { final file = File(_getCacheFilePath(url)); if (file.existsSync()) { return file.readAsBytesSync(); } return null; }