factory ChatMessage.fromMap(Map<String, dynamic> json) { return ChatMessage( role: json['role'], content: json['content'], ); }