watchConversations method

Stream<List<Conversation>> watchConversations({
  1. ConversationFilter? filter,
})

Watch all conversations.

Returns a reactive stream that updates when conversations change.

Implementation

Stream<List<Conversation>> watchConversations({ConversationFilter? filter}) {
  _ensureInitialized();
  return _watchPresentedConversations(filter);
}