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