unblockUser method

Future<void> unblockUser(
  1. String userId
)

Unblocks the specified User ID. Unblocked User cannot send messages to the ex-blocker.

Implementation

Future<void> unblockUser(String userId) async {
  await SendbirdChat.unblockUser(userId);
}