unblock method
Removes the user from the blocklist of the authenticated MyUser.
Implementation
Future<void> unblock() async {
blocklistStatus.value = RxStatus.loading();
try {
await _userService.unblockUser(id);
} finally {
blocklistStatus.value = RxStatus.empty();
}
}