make method

void make(
  1. ProfileViews res, {
  2. bool excludeSelf = false,
})

Implementation

void make(ProfileViews res, {bool excludeSelf = false}) async {
  actors.clear();
  actors = res.actors;
  if (excludeSelf) {
    exclude(plugin.api.session.did!);
  }
  cursor = res.cursor;
}