CreateConversationParams constructor

const CreateConversationParams({
  1. required ConversationType type,
  2. required ConversationMode mode,
  3. String? name,
  4. List<String>? participantIds,
  5. Duration? expiresIn,
  6. Map<String, dynamic>? extra,
})

Implementation

const CreateConversationParams({
  required this.type,
  required this.mode,
  this.name,
  this.participantIds,
  this.expiresIn,
  this.extra,
});