find method
Returns the node with id, or null.
Implementation
@override
Future<NodeDescriptor?> find(NodeId id) async {
final json = _store.readObject(id.value);
return json == null ? null : NodeDescriptor.fromJson(json);
}
Returns the node with id, or null.
@override
Future<NodeDescriptor?> find(NodeId id) async {
final json = _store.readObject(id.value);
return json == null ? null : NodeDescriptor.fromJson(json);
}