fetchBlackList method

void fetchBlackList()

Implementation

void fetchBlackList() {
  ContactRepo.getBlockList().then((value) {
    if (value.isNotEmpty) {
      blackListUsers.clear();
      blackListUsers.addAll(value);
      notifyListeners();
    }
  });
}