watchBlockedUsers abstract method

Stream<Set<String>> watchBlockedUsers({
  1. required String chatId,
  2. required String userId,
})

Stream of blocked users.

  • chatId: ID of the chat
  • userId: ID of the user

Returns a stream that emits a set of blocked user IDs.

Implementation

Stream<Set<String>> watchBlockedUsers({
  required String chatId,
  required String userId,
});