unblockUser abstract method

Future<bool> unblockUser({
  1. required String chatId,
  2. required String userId,
  3. required String blockedUserId,
})

Unblocks a user.

  • chatId: ID of the chat
  • userId: ID of the user unblocking
  • blockedUserId: ID of the user to unblock

Returns true if the operation succeeded.

Implementation

Future<bool> unblockUser({
  required String chatId,
  required String userId,
  required String blockedUserId,
});