class ChatMsg { String? id; int? knowledgeId; String? text; int? isBot; ChatMsg({ this.id, this.knowledgeId, this.text, this.isBot, }); }