toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'call_cid'] = this.callCid;
json[r'created_at'] = this.createdAt.toUtc().toIso8601String();
if (this.isTrimmed != null) {
json[r'is_trimmed'] = this.isTrimmed;
} else {
json[r'is_trimmed'] = null;
}
json[r'participants_overview'] = this.participantsOverview;
json[r'session_id'] = this.sessionId;
json[r'type'] = this.type;
return json;
}