removeFromBlackList method
Implementation
void removeFromBlackList(String userId) {
ContactRepo.removeBlacklist(userId).then((result) {
if (result.isSuccess) {
blackListUsers.removeWhere((e) => e.userId == userId);
notifyListeners();
}
});
}