ConversationData.fromJson constructor
Implementation
ConversationData.fromJson(Map<String, dynamic> json)
: participants = _participantAccessFromJson(json['participants']),
super(
id: json['id'],
photoUrl: json['photoUrl'],
subject: json['subject'],
custom: (json['custom'] != null ? Map.from(json['custom']) : null),
welcomeMessages: (json['welcomeMessages'] != null
? List.from(json['welcomeMessages'])
: null),
);