ConversationsLoaded constructor

ConversationsLoaded({
  1. required List<Conversation> conversations,
  2. bool hasMore = false,
  3. Set<String> selectedConversations = const {},
  4. String? activeConversationId,
  5. bool isLoadingMore = false,
})

Implementation

ConversationsLoaded({
  required this.conversations,
  this.hasMore = false,
  this.selectedConversations = const {},
  this.activeConversationId,
  this.isLoadingMore = false,
}) : _version = _nextVersion++;