getData method
Implementation
@override
Future<void> getData(bool insert, {String? term}) async {
String actor = term!;
try {
// String? cursor = holder.cursor; // TODO cursor, limit
FollowersResponse res = await plugin.followers(actor);
holder.make(res.graph, excludeSelf: insert);
} catch (e, stacktrace) {
// TODO
debugPrint("Error: $e");
debugPrint("stacktrace: $stacktrace");
}
}