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