ConversationList constructor

const ConversationList({
  1. Key? key,
  2. required Session session,
  3. bool enableZoom = false,
  4. bool? showFeedHeader,
  5. String? theme,
  6. ThemeOptions? themeOptions,
  7. BaseConversationPredicate? feedFilter,
  8. SelectConversationHandler? onSelectConversation,
  9. LoadingStateHandler? onLoadingStateChanged,
})

Implementation

const ConversationList({
  Key? key,
  required this.session,
  this.enableZoom = false,
  this.showFeedHeader,
  this.theme,
  this.themeOptions,
  this.feedFilter,
  this.onSelectConversation,
  this.onLoadingStateChanged,
}) : super(key: key);