toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'call_cid'] = this.callCid;
json[r'captured_at'] = this.capturedAt.toUtc().toIso8601String();
json[r'created_at'] = this.createdAt.toUtc().toIso8601String();
json[r'egress_id'] = this.egressId;
json[r'session_id'] = this.sessionId;
json[r'track_type'] = this.trackType;
json[r'type'] = this.type;
json[r'url'] = this.url;
json[r'users'] = this.users;
return json;
}