unblock method

Future<void> unblock(
  1. RxUser user
)

Removes the user from the blocklist of the authenticated MyUser.

Implementation

Future<void> unblock(RxUser user) async {
  if (blocklist.length == 1) {
    pop?.call();
  }

  await _userService.unblockUser(user.id);
}