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();
json[r'from_user_id'] = this.fromUserId;
json[r'muted_user_ids'] = this.mutedUserIds;
json[r'type'] = this.type;
return json;
}