get method
The job with id, or null when unknown.
Implementation
@override
Future<RenderJob?> get(String id) async {
final file = _fileFor(id);
if (!file.existsSync()) return null;
return _decode(jsonDecode(await file.readAsString()) as Map<String, Object?>);
}