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