invalidate method
Invalidate the cache for a specific step.
Implementation
Future<void> invalidate(NativeStepFingerprint fingerprint) async {
final metaFile = _metaFile(fingerprint);
if (metaFile.existsSync()) {
await metaFile.delete();
logger?.fine('Invalidated cache for ${fingerprint.id}');
}
}