fetchBlackList method
void
fetchBlackList()
Implementation
void fetchBlackList() {
ContactRepo.getBlackList().then((value) {
if (value.isNotEmpty) {
blackListUsers.addAll(value);
notifyListeners();
}
});
}