ConversationList constructor

const ConversationList({
  1. Key? key,
  2. required ValueChanged<int>? onUnreadCountChanged,
  3. required ConversationItemConfig config,
  4. String? selectedConversationId,
})

Implementation

const ConversationList({
  Key? key,
  required this.onUnreadCountChanged,
  required this.config,
  this.selectedConversationId,
}) : super(key: key);