unblockUser method

Future<void> unblockUser(
  1. UserId id
)

Removes the specified User from the blocklist of the authenticated MyUser.

Implementation

Future<void> unblockUser(UserId id) async {
  Log.debug('unblockUser($id)', '$runtimeType');
  await _userRepository.unblockUser(id);
}