Conversation constructor
Conversation({})
Implementation
Conversation({
required Session session,
required String id,
Map<String, String?>? custom,
List<String>? welcomeMessages,
String? photoUrl,
String? subject,
required this.participants,
}) : _session = session,
super(
id: id,
custom: custom,
welcomeMessages: welcomeMessages,
photoUrl: photoUrl,
subject: subject,
);