unblockUser method
- 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);
}