Deletes the job with id (idempotent).
id
@override Future<void> delete(String id) async { final file = _fileFor(id); if (file.existsSync()) await file.delete(); }