remove method

Future<void> remove(
  1. UserId userId
)

Removes a User identified by the provided userId from the blocklist.

Implementation

Future<void> remove(UserId userId) {
  Log.debug('remove($userId)', '$runtimeType');
  return blocklist.remove(userId);
}