getConversation method

Conversation getConversation({
  1. required String id,
  2. Map<String, String?>? custom,
  3. List<String>? welcomeMessages,
  4. String? photoUrl,
  5. String? subject,
  6. Set<Participant> participants = const {},
})

Implementation

Conversation getConversation({
  required String id,
  Map<String, String?>? custom,
  List<String>? welcomeMessages,
  String? photoUrl,
  String? subject,
  Set<Participant> participants = const {},
}) => Conversation(
  session: this,
  id: id,
  custom: custom,
  welcomeMessages: welcomeMessages,
  photoUrl: photoUrl,
  subject: subject,
  participants: participants,
);