removeFromBlackList method

Future<void> removeFromBlackList(
  1. String userId
)

Implementation

Future<void> removeFromBlackList(String userId) async {
  if (await haveConnectivity()) {
    ContactRepo.removeBlocklist(userId);
  }
}