deleteCachedAssets method
Implementation
Future<void> deleteCachedAssets(Data? data, {Data? caller}) async {
if (data is! CheckPointDefect) return;
final scope = _scopeForData(data, caller: caller).trim();
if (scope.isEmpty) return;
await OP.deleteScopedImages(scope);
}