make method

void make(
  1. Graph graph, {
  2. dynamic excludeSelf = false,
})

Implementation

void make(Graph graph, {excludeSelf = false}) async {
  actors = graph.actors;
  if (excludeSelf) {
    exclude(plugin.api.session.did!);
  }
}