unblockUser static method
- String userId
Unblocks the specified User
ID.
Unblocked User
cannot send messages to the ex-blocker.
Implementation
static Future<void> unblockUser(String userId) async {
sbLog.i(StackTrace.current, 'userId: $userId');
await _instance._chat.unblockUser(userId);
}